@crustjs/plugins 0.0.2 → 0.0.4

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/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # @crustjs/plugins
2
2
 
3
- Official plugins for the [Crust](https://crust.cyanlabs.co) CLI framework.
3
+ Official plugins for the [Crust](https://crustjs.com) CLI framework.
4
4
 
5
5
  ## Install
6
6
 
@@ -36,7 +36,7 @@ runMain(main, {
36
36
 
37
37
  ## Documentation
38
38
 
39
- See the full docs at [crust.cyanlabs.co](https://crust.cyanlabs.co).
39
+ See the full docs at [crustjs.com](https://crustjs.com).
40
40
 
41
41
  ## License
42
42
 
package/dist/index.js CHANGED
@@ -90,7 +90,7 @@ function renderHelp(command, path) {
90
90
  `);
91
91
  }
92
92
  var helpFlagDef = {
93
- type: Boolean,
93
+ type: "boolean",
94
94
  alias: "h",
95
95
  description: "Show help"
96
96
  };
@@ -206,7 +206,7 @@ function versionPlugin(versionValue = "0.0.0") {
206
206
  name: "version",
207
207
  setup(context, actions) {
208
208
  actions.addFlag(context.rootCommand, "version", {
209
- type: Boolean,
209
+ type: "boolean",
210
210
  alias: "v",
211
211
  description: "Show version number"
212
212
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@crustjs/plugins",
3
- "version": "0.0.2",
3
+ "version": "0.0.4",
4
4
  "description": "Official plugins for the Crust CLI framework",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -10,7 +10,7 @@
10
10
  "url": "git+https://github.com/chenxin-yan/crust.git",
11
11
  "directory": "packages/plugins"
12
12
  },
13
- "homepage": "https://crust.cyanlabs.co",
13
+ "homepage": "https://crustjs.com",
14
14
  "bugs": {
15
15
  "url": "https://github.com/chenxin-yan/crust/issues"
16
16
  },