@foal/cli 5.1.2 → 5.1.3

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.
Files changed (2) hide show
  1. package/lib/index.js +1 -0
  2. package/package.json +3 -3
package/lib/index.js CHANGED
@@ -49,6 +49,7 @@ commander_1.program
49
49
  commander_1.program
50
50
  .command('run')
51
51
  .argument('<name>', 'Name of the script to run')
52
+ .argument('[args...]', 'Script arguments (key=value format)')
52
53
  .description('Run a shell script.')
53
54
  .action((name) => {
54
55
  (0, run_1.runScript)({ name }, process.argv);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@foal/cli",
3
- "version": "5.1.2",
3
+ "version": "5.1.3",
4
4
  "description": "CLI tool for FoalTS",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
@@ -60,7 +60,7 @@
60
60
  "commander": "~14.0.2"
61
61
  },
62
62
  "devDependencies": {
63
- "@foal/core": "^5.1.2",
63
+ "@foal/core": "^5.1.3",
64
64
  "@types/mocha": "10.0.10",
65
65
  "@types/node": "24.10.0",
66
66
  "mocha": "~11.7.5",
@@ -68,5 +68,5 @@
68
68
  "ts-node": "~10.9.2",
69
69
  "typescript": "~5.5.4"
70
70
  },
71
- "gitHead": "85593e34027d7f0639c164222f0902aaf80475b5"
71
+ "gitHead": "d60c2bcc7c7acb09dbff1f601982ec2a27b35fd8"
72
72
  }