@staff0rd/assist 0.100.0 → 0.100.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +5 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -6,7 +6,7 @@ import { Command } from "commander";
|
|
|
6
6
|
// package.json
|
|
7
7
|
var package_default = {
|
|
8
8
|
name: "@staff0rd/assist",
|
|
9
|
-
version: "0.100.
|
|
9
|
+
version: "0.100.1",
|
|
10
10
|
type: "module",
|
|
11
11
|
main: "dist/index.js",
|
|
12
12
|
bin: {
|
|
@@ -7066,7 +7066,10 @@ var runCommand = program.command("run").description("Run a configured command fr
|
|
|
7066
7066
|
run2(name, args);
|
|
7067
7067
|
});
|
|
7068
7068
|
runCommand.command("list").description("List configured run commands").action(listRunConfigs);
|
|
7069
|
-
runCommand.command("add").description("Add a new run configuration to assist.yml").
|
|
7069
|
+
runCommand.command("add").description("Add a new run configuration to assist.yml").argument("<name>", "Name for the run configuration").argument("<command>", "Command to execute").argument("[args...]", "Static args to pass to the command").addHelpText(
|
|
7070
|
+
"after",
|
|
7071
|
+
'\nPositional params can be added to the config manually:\n params:\n - name: env # assist run deploy prod \u2192 appends "prod"\n required: true\n - name: tag\n default: latest'
|
|
7072
|
+
).allowUnknownOption().allowExcessArguments().action(() => add2());
|
|
7070
7073
|
registerNew(program);
|
|
7071
7074
|
var lintCommand = program.command("lint").description("Run lint checks for conventions not enforced by biomejs").action(lint);
|
|
7072
7075
|
lintCommand.command("init").description("Initialize Biome with standard linter config").action(init);
|