@akala/pm 6.0.14 → 6.0.15

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
1
  # (2023-05-22)
2
2
 
3
3
 
4
+ ### Bug Fixes
5
+
6
+ * update command definitions 594a29a
7
+
8
+
4
9
 
package/commands.json CHANGED
@@ -39,34 +39,6 @@
39
39
  }
40
40
  }
41
41
  },
42
- {
43
- "name": "add",
44
- "config": {
45
- "fs": {
46
- "inject": [
47
- "param.0"
48
- ],
49
- "path": "dist/esm/commands/plugin/add.js",
50
- "source": "src/commands/plugin/add.ts"
51
- },
52
- "": {
53
- "inject": [
54
- "param.0"
55
- ]
56
- },
57
- "cli": {
58
- "usage": "plugin add <plugin>",
59
- "inject": [
60
- "options.plugin"
61
- ],
62
- "options": {
63
- "plugin": {
64
- "normalize": true
65
- }
66
- }
67
- }
68
- }
69
- },
70
42
  {
71
43
  "name": "bridge",
72
44
  "config": {
@@ -345,6 +317,62 @@
345
317
  }
346
318
  }
347
319
  },
320
+ {
321
+ "name": "plugin.add",
322
+ "config": {
323
+ "fs": {
324
+ "inject": [
325
+ "param.0"
326
+ ],
327
+ "path": "dist/esm/commands/plugin/add.js",
328
+ "source": "src/commands/plugin/add.ts"
329
+ },
330
+ "": {
331
+ "inject": [
332
+ "param.0"
333
+ ]
334
+ },
335
+ "cli": {
336
+ "usage": "add <plugin>",
337
+ "inject": [
338
+ "options.plugin"
339
+ ],
340
+ "options": {
341
+ "plugin": {
342
+ "normalize": true
343
+ }
344
+ }
345
+ }
346
+ }
347
+ },
348
+ {
349
+ "name": "plugin.remove",
350
+ "config": {
351
+ "fs": {
352
+ "inject": [
353
+ "param.0"
354
+ ],
355
+ "path": "dist/esm/commands/plugin/remove.js",
356
+ "source": "src/commands/plugin/remove.ts"
357
+ },
358
+ "": {
359
+ "inject": [
360
+ "param.0"
361
+ ]
362
+ },
363
+ "cli": {
364
+ "usage": "remove <plugin>",
365
+ "inject": [
366
+ "options.plugin"
367
+ ],
368
+ "options": {
369
+ "plugin": {
370
+ "normalize": true
371
+ }
372
+ }
373
+ }
374
+ }
375
+ },
348
376
  {
349
377
  "name": "proxy",
350
378
  "config": {
@@ -418,34 +446,6 @@
418
446
  }
419
447
  }
420
448
  },
421
- {
422
- "name": "remove",
423
- "config": {
424
- "fs": {
425
- "inject": [
426
- "param.0"
427
- ],
428
- "path": "dist/esm/commands/plugin/remove.js",
429
- "source": "src/commands/plugin/remove.ts"
430
- },
431
- "": {
432
- "inject": [
433
- "param.0"
434
- ]
435
- },
436
- "cli": {
437
- "usage": "plugin remove <plugin>",
438
- "inject": [
439
- "options.plugin"
440
- ],
441
- "options": {
442
- "plugin": {
443
- "normalize": true
444
- }
445
- }
446
- }
447
- }
448
- },
449
449
  {
450
450
  "name": "restart",
451
451
  "config": {
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "pm": "dist/esm/cli.js",
5
5
  "pm-fork": "dist/esm/fork.js"
6
6
  },
7
- "version": "6.0.14",
7
+ "version": "6.0.15",
8
8
  "scripts": {
9
9
  "test": "echo 1",
10
10
  "generate": "ac generate dist/esm/commands commands.json",
@@ -27,8 +27,8 @@
27
27
  ],
28
28
  "dependencies": {
29
29
  "@akala/cli": "^2.9.27",
30
- "@akala/commands": "^5.6.0",
31
- "@akala/config": "^2.3.13",
30
+ "@akala/commands": "^5.6.1",
31
+ "@akala/config": "^2.3.14",
32
32
  "@akala/core": "^10.5.2",
33
33
  "@akala/json-rpc-ws": "^10.2.35",
34
34
  "reflect-metadata": "^0.1.13",
@@ -11,7 +11,7 @@
11
11
  ]
12
12
  },
13
13
  "cli": {
14
- "usage": "plugin add <plugin>",
14
+ "usage": "add <plugin>",
15
15
  "inject": [
16
16
  "options.plugin"
17
17
  ],
@@ -11,7 +11,7 @@
11
11
  ]
12
12
  },
13
13
  "cli": {
14
- "usage": "plugin remove <plugin>",
14
+ "usage": "remove <plugin>",
15
15
  "inject": [
16
16
  "options.plugin"
17
17
  ],