create-crust 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/create-crust
2
2
 
3
- Scaffold a new [Crust](https://crust.cyanlabs.co) CLI project in seconds.
3
+ Scaffold a new [Crust](https://crustjs.com) CLI project in seconds.
4
4
 
5
5
  ## Usage
6
6
 
@@ -16,7 +16,7 @@ This will prompt for project details and generate a ready-to-go project with:
16
16
 
17
17
  ## Documentation
18
18
 
19
- See the full docs at [crust.cyanlabs.co](https://crust.cyanlabs.co).
19
+ See the full docs at [crustjs.com](https://crustjs.com).
20
20
 
21
21
  ## License
22
22
 
package/dist/index.js CHANGED
@@ -65,14 +65,14 @@ const main = defineCommand({
65
65
  args: [
66
66
  {
67
67
  name: "name",
68
- type: String,
68
+ type: "string",
69
69
  description: "Your name",
70
70
  default: "world",
71
71
  },
72
72
  ],
73
73
  flags: {
74
74
  greet: {
75
- type: String,
75
+ type: "string",
76
76
  description: "Greeting to use",
77
77
  default: "Hello",
78
78
  alias: "g",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-crust",
3
- "version": "0.0.2",
3
+ "version": "0.0.4",
4
4
  "description": "Scaffold a new Crust CLI project.",
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/create-crust"
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
  },