@akala/pm 3.7.8 → 3.7.9

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/changelog.md CHANGED
@@ -3,8 +3,7 @@
3
3
 
4
4
  ### Bug Fixes
5
5
 
6
- * fork broken 8a998fc
7
- * improve start/stop doc e4be495
6
+ * start command 4f924c6
8
7
 
9
8
 
10
9
 
package/commands.json CHANGED
@@ -469,11 +469,14 @@
469
469
  "name": {
470
470
  "doc": "name to assign to the process",
471
471
  "needsValue": true
472
+ },
473
+ "program": {
474
+ "doc": "program to start"
472
475
  }
473
476
  },
474
477
  "inject": [
475
478
  "$container",
476
- "program",
479
+ "options.program",
477
480
  "context"
478
481
  ],
479
482
  "usage": "start <program>"
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "pm": "dist/cli.js",
5
5
  "pm-fork": "dist/fork.js"
6
6
  },
7
- "version": "3.7.8",
7
+ "version": "3.7.9",
8
8
  "scripts": {
9
9
  "test": "echo 1",
10
10
  "generate": "ac generate dist/commands commands.json",
@@ -26,11 +26,14 @@
26
26
  "name": {
27
27
  "doc": "name to assign to the process",
28
28
  "needsValue": true
29
+ },
30
+ "program": {
31
+ "doc": "program to start"
29
32
  }
30
33
  },
31
34
  "inject": [
32
35
  "$container",
33
- "program",
36
+ "options.program",
34
37
  "context"
35
38
  ],
36
39
  "usage": "start <program>"