@akala/pm 2.5.6 → 2.5.7

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
@@ -1,4 +1,9 @@
1
- # (2021-12-18)
1
+ # (2021-12-31)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * update all commands 8f54036
2
7
 
3
8
 
4
9
 
package/commands.json CHANGED
@@ -9,6 +9,7 @@
9
9
  "path": "dist/commands/$init.js",
10
10
  "source": "src/commands/$init.ts",
11
11
  "inject": [
12
+ "$container",
12
13
  "param.0"
13
14
  ]
14
15
  },
@@ -142,7 +143,8 @@
142
143
  "source": "src/commands/discover.ts",
143
144
  "inject": [
144
145
  "param.0",
145
- "param.1"
146
+ "param.1",
147
+ "$container"
146
148
  ]
147
149
  },
148
150
  "": {
@@ -175,7 +177,8 @@
175
177
  "path": "dist/commands/install.js",
176
178
  "source": "src/commands/install.ts",
177
179
  "inject": [
178
- "param.0"
180
+ "param.0",
181
+ "$container"
179
182
  ]
180
183
  },
181
184
  "": {
@@ -193,52 +196,53 @@
193
196
  }
194
197
  },
195
198
  {
196
- "name": "link",
199
+ "name": "log",
197
200
  "inject": [],
198
201
  "config": {
199
202
  "fs": {
200
- "path": "dist/commands/link.js",
201
- "source": "src/commands/link.ts",
203
+ "path": "dist/commands/log.js",
204
+ "source": "src/commands/log.ts",
202
205
  "inject": [
203
- "param.0",
204
- "param.1"
206
+ "param.0"
205
207
  ]
206
208
  },
207
209
  "": {
208
210
  "inject": [
209
- "param.0",
210
- "param.1",
211
- "$container"
211
+ "param.0"
212
212
  ]
213
213
  },
214
214
  "cli": {
215
215
  "inject": [
216
- "param.0",
217
- "param.1",
218
- "$container"
216
+ "param.0"
219
217
  ]
220
218
  }
221
219
  }
222
220
  },
223
221
  {
224
- "name": "log",
222
+ "name": "link",
225
223
  "inject": [],
226
224
  "config": {
227
225
  "fs": {
228
- "path": "dist/commands/log.js",
229
- "source": "src/commands/log.ts",
226
+ "path": "dist/commands/link.js",
227
+ "source": "src/commands/link.ts",
230
228
  "inject": [
231
- "param.0"
229
+ "param.0",
230
+ "param.1",
231
+ "$container"
232
232
  ]
233
233
  },
234
234
  "": {
235
235
  "inject": [
236
- "param.0"
236
+ "param.0",
237
+ "param.1",
238
+ "$container"
237
239
  ]
238
240
  },
239
241
  "cli": {
240
242
  "inject": [
241
- "param.0"
243
+ "param.0",
244
+ "param.1",
245
+ "$container"
242
246
  ]
243
247
  }
244
248
  }
@@ -315,7 +319,9 @@
315
319
  "fs": {
316
320
  "path": "dist/commands/ready.js",
317
321
  "source": "src/commands/ready.ts",
318
- "inject": []
322
+ "inject": [
323
+ "ignore"
324
+ ]
319
325
  },
320
326
  "": {
321
327
  "inject": [
@@ -332,6 +338,7 @@
332
338
  "path": "dist/commands/start.js",
333
339
  "source": "src/commands/start.ts",
334
340
  "inject": [
341
+ "$container",
335
342
  "param.0",
336
343
  "param.1"
337
344
  ]
@@ -393,7 +400,8 @@
393
400
  "path": "dist/commands/stop.js",
394
401
  "source": "src/commands/stop.ts",
395
402
  "inject": [
396
- "param.0"
403
+ "param.0",
404
+ "$container"
397
405
  ]
398
406
  },
399
407
  "": {
package/package.json CHANGED
@@ -4,10 +4,10 @@
4
4
  "pm": "dist/cli.js",
5
5
  "pm-fork": "dist/fork.js"
6
6
  },
7
- "version": "2.5.6",
7
+ "version": "2.5.7",
8
8
  "scripts": {
9
9
  "test": "echo 1",
10
- "ac": "ac generate dist/commands commands.json",
10
+ "generate": "ac generate dist/commands commands.json",
11
11
  "prepack": "tsc -p ."
12
12
  },
13
13
  "funding": "https://github.com/npenin/akala?sponsor=1",
@@ -19,7 +19,7 @@
19
19
  "homepage": "https://akala.js.org/pm",
20
20
  "dependencies": {
21
21
  "@akala/cli": "1.6.2",
22
- "@akala/commands": "2.7.2",
22
+ "@akala/commands": "2.8.0",
23
23
  "@akala/core": "7.5.12",
24
24
  "@akala/json-rpc-ws": "9.3.4",
25
25
  "debug": "^4.1.1",