Bun is now a task runner as well

This commit is contained in:
Jarred Sumner
2021-10-26 17:24:09 -07:00
parent 49c5c32714
commit 096d668d83
2 changed files with 3 additions and 2 deletions

View File

@@ -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.

View File

@@ -465,7 +465,7 @@ const HelpCommand = struct {
;
switch (reason) {
.explicit => Output.pretty("<r><b><magenta>Bun<r>: a fast bundler & transpiler for web software.\n\n" ++ fmt, .{}),
.explicit => Output.pretty("<r><b><magenta>Bun<r>: a fast bundler, transpiler and task runner for web software.\n\n" ++ fmt, .{}),
.invalid_command => Output.prettyError("<r><red>Uh-oh<r> not sure what to do with that command.\n\n" ++ fmt, .{}),
}
} else {
@@ -482,7 +482,7 @@ const HelpCommand = struct {
;
switch (reason) {
.explicit => Output.pretty("<r><b><magenta>Bun<r>: a fast bundler & transpiler for web software.\n\n" ++ fmt, .{dirname}),
.explicit => Output.pretty("<r><b><magenta>Bun<r>: a fast bundler, transpiler and task runner for web software.\n\n" ++ fmt, .{dirname}),
.invalid_command => Output.prettyError("<r><red>Uh-oh<r> not sure what to do with that command.\n\n" ++ fmt, .{dirname}),
}
}