@moostjs/event-cli 0.3.0 → 0.3.2

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/dist/index.cjs CHANGED
@@ -109,7 +109,6 @@ class MoostCli {
109
109
  .entries(this.optionTypes)
110
110
  .filter(([_key, val]) => val.length === 1 && val[0] === Boolean)
111
111
  .map(([key, _val]) => key);
112
- console.log(boolean);
113
112
  void this.cliApp.run(undefined, {
114
113
  boolean,
115
114
  });
package/dist/index.mjs CHANGED
@@ -108,7 +108,6 @@ class MoostCli {
108
108
  .entries(this.optionTypes)
109
109
  .filter(([_key, val]) => val.length === 1 && val[0] === Boolean)
110
110
  .map(([key, _val]) => key);
111
- console.log(boolean);
112
111
  void this.cliApp.run(undefined, {
113
112
  boolean,
114
113
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@moostjs/event-cli",
3
- "version": "0.3.0",
3
+ "version": "0.3.2",
4
4
  "description": "@moostjs/event-cli",
5
5
  "main": "dist/index.cjs",
6
6
  "module": "dist/index.mjs",
@@ -35,13 +35,11 @@
35
35
  "url": "https://github.com/moostjs/moostjs/issues"
36
36
  },
37
37
  "homepage": "https://github.com/moostjs/moostjs/tree/main/packages/event-cli#readme",
38
- "peerDependencies": {
39
- "moost": "0.3.0",
40
- "wooks": "^0.4.1",
41
- "@wooksjs/event-core": "^0.4.1"
42
- },
38
+ "peerDependencies": {},
43
39
  "dependencies": {
44
- "@wooksjs/event-cli": "^0.4.1",
45
- "@prostojs/wf": "^0.0.3"
40
+ "moost": "0.3.2",
41
+ "wooks": "^0.4.2",
42
+ "@wooksjs/event-core": "^0.4.2",
43
+ "@wooksjs/event-cli": "^0.4.2"
46
44
  }
47
45
  }