@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 +1 -2
- package/commands.json +4 -1
- package/package.json +1 -1
- package/src/commands/start.json +4 -1
package/changelog.md
CHANGED
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
package/src/commands/start.json
CHANGED
@@ -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>"
|