From 096d668d830b065503919d75357ca2a001c6e46d Mon Sep 17 00:00:00 2001 From: Jarred Sumner Date: Tue, 26 Oct 2021 17:24:09 -0700 Subject: [PATCH] Bun is now a task runner as well --- README.md | 1 + src/cli.zig | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9d5fc7bfc8..498f862f2d 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,7 @@ Bun is a new: - JavaScript & CSS bundler - Development server with 60fps Hot Module Reloading (& WIP support for React Fast Refresh) - JavaScript Runtime Environment (powered by JavaScriptCore, what WebKit/Safari uses) +- Task runner for `package.json` scripts All in one fast & easy-to-use tool. Instead of 1,000 node_modules for development, you only need Bun. diff --git a/src/cli.zig b/src/cli.zig index 26614e5ed3..9c8edd7252 100644 --- a/src/cli.zig +++ b/src/cli.zig @@ -465,7 +465,7 @@ const HelpCommand = struct { ; switch (reason) { - .explicit => Output.pretty("Bun: a fast bundler & transpiler for web software.\n\n" ++ fmt, .{}), + .explicit => Output.pretty("Bun: a fast bundler, transpiler and task runner for web software.\n\n" ++ fmt, .{}), .invalid_command => Output.prettyError("Uh-oh not sure what to do with that command.\n\n" ++ fmt, .{}), } } else { @@ -482,7 +482,7 @@ const HelpCommand = struct { ; switch (reason) { - .explicit => Output.pretty("Bun: a fast bundler & transpiler for web software.\n\n" ++ fmt, .{dirname}), + .explicit => Output.pretty("Bun: a fast bundler, transpiler and task runner for web software.\n\n" ++ fmt, .{dirname}), .invalid_command => Output.prettyError("Uh-oh not sure what to do with that command.\n\n" ++ fmt, .{dirname}), } }