@springmicro/cli 0.7.1 → 0.7.3

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
@@ -21,7 +21,7 @@ $ npm install -g @springmicro/cli
21
21
  $ springmicro COMMAND
22
22
  running command...
23
23
  $ springmicro (--version)
24
- @springmicro/cli/0.7.1 win32-x64 node-v20.19.0
24
+ @springmicro/cli/0.7.3 win32-x64 node-v20.19.0
25
25
  $ springmicro --help [COMMAND]
26
26
  USAGE
27
27
  $ springmicro COMMAND
@@ -63,7 +63,7 @@ EXAMPLES
63
63
  $ springmicro add auth
64
64
  ```
65
65
 
66
- _See code: [src/commands/add/auth.ts](https://github.com/SpringMicro1/springmicrohost-js/blob/v0.7.1/src/commands/add/auth.ts)_
66
+ _See code: [src/commands/add/auth.ts](https://github.com/SpringMicro1/springmicrohost-js/blob/v0.7.3/src/commands/add/auth.ts)_
67
67
 
68
68
  ## `springmicro add form`
69
69
 
@@ -83,7 +83,7 @@ EXAMPLES
83
83
  $ springmicro add form
84
84
  ```
85
85
 
86
- _See code: [src/commands/add/form.ts](https://github.com/SpringMicro1/springmicrohost-js/blob/v0.7.1/src/commands/add/form.ts)_
86
+ _See code: [src/commands/add/form.ts](https://github.com/SpringMicro1/springmicrohost-js/blob/v0.7.3/src/commands/add/form.ts)_
87
87
 
88
88
  ## `springmicro help [COMMAND]`
89
89
 
@@ -126,7 +126,7 @@ EXAMPLES
126
126
  $ springmicro init astro -n example
127
127
  ```
128
128
 
129
- _See code: [src/commands/init/index.ts](https://github.com/SpringMicro1/springmicrohost-js/blob/v0.7.1/src/commands/init/index.ts)_
129
+ _See code: [src/commands/init/index.ts](https://github.com/SpringMicro1/springmicrohost-js/blob/v0.7.3/src/commands/init/index.ts)_
130
130
 
131
131
  ## `springmicro init astro`
132
132
 
@@ -146,7 +146,7 @@ EXAMPLES
146
146
  $ springmicro init astro -n <project-name>
147
147
  ```
148
148
 
149
- _See code: [src/commands/init/astro.ts](https://github.com/SpringMicro1/springmicrohost-js/blob/v0.7.1/src/commands/init/astro.ts)_
149
+ _See code: [src/commands/init/astro.ts](https://github.com/SpringMicro1/springmicrohost-js/blob/v0.7.3/src/commands/init/astro.ts)_
150
150
 
151
151
  ## `springmicro plugins`
152
152
 
@@ -1,41 +1,60 @@
1
1
  {
2
2
  "commands": {
3
- "add:auth": {
3
+ "init:astro": {
4
4
  "aliases": [],
5
5
  "args": {},
6
- "description": "describe the command here",
6
+ "description": "Initialize a Astro project according to SpringMicroHost's specifications.",
7
7
  "examples": [
8
- "<%= config.bin %> <%= command.id %>"
8
+ "<%= config.bin %> <%= command.id %> -n <project-name>"
9
9
  ],
10
- "flags": {},
10
+ "flags": {
11
+ "name": {
12
+ "char": "n",
13
+ "description": "Project name",
14
+ "name": "name",
15
+ "required": true,
16
+ "hasDynamicHelp": false,
17
+ "multiple": false,
18
+ "type": "option"
19
+ }
20
+ },
11
21
  "hasDynamicHelp": false,
12
22
  "hiddenAliases": [],
13
- "id": "add:auth",
23
+ "id": "init:astro",
14
24
  "pluginAlias": "@springmicro/cli",
15
25
  "pluginName": "@springmicro/cli",
16
26
  "pluginType": "core",
17
27
  "strict": true,
18
28
  "enableJsonFlag": false,
29
+ "step": 1,
30
+ "totalSteps": 2,
19
31
  "isESM": true,
20
32
  "relativePath": [
21
33
  "dist",
22
34
  "commands",
23
- "add",
24
- "auth.js"
35
+ "init",
36
+ "astro.js"
25
37
  ]
26
38
  },
27
- "add:form": {
39
+ "init": {
28
40
  "aliases": [],
29
- "args": {},
30
- "description": "add a form to your project",
41
+ "args": {
42
+ "projectType": {
43
+ "description": "Project type (astro)",
44
+ "name": "projectType",
45
+ "required": true
46
+ }
47
+ },
48
+ "description": "Initialize a JavaScript framework project according to SpringMicroHost's specifications.",
31
49
  "examples": [
32
- "<%= config.bin %> <%= command.id %>"
50
+ "<%= config.bin %> <%= command.id %> astro -n example"
33
51
  ],
34
52
  "flags": {
35
- "template": {
36
- "char": "t",
37
- "description": "form template (contact|quote)",
38
- "name": "template",
53
+ "name": {
54
+ "char": "n",
55
+ "description": "Project name",
56
+ "name": "name",
57
+ "required": true,
39
58
  "hasDynamicHelp": false,
40
59
  "multiple": false,
41
60
  "type": "option"
@@ -43,7 +62,7 @@
43
62
  },
44
63
  "hasDynamicHelp": false,
45
64
  "hiddenAliases": [],
46
- "id": "add:form",
65
+ "id": "init",
47
66
  "pluginAlias": "@springmicro/cli",
48
67
  "pluginName": "@springmicro/cli",
49
68
  "pluginType": "core",
@@ -53,65 +72,46 @@
53
72
  "relativePath": [
54
73
  "dist",
55
74
  "commands",
56
- "add",
57
- "form.js"
75
+ "init",
76
+ "index.js"
58
77
  ]
59
78
  },
60
- "init:astro": {
79
+ "add:auth": {
61
80
  "aliases": [],
62
81
  "args": {},
63
- "description": "Initialize a Astro project according to SpringMicroHost's specifications.",
82
+ "description": "describe the command here",
64
83
  "examples": [
65
- "<%= config.bin %> <%= command.id %> -n <project-name>"
84
+ "<%= config.bin %> <%= command.id %>"
66
85
  ],
67
- "flags": {
68
- "name": {
69
- "char": "n",
70
- "description": "Project name",
71
- "name": "name",
72
- "required": true,
73
- "hasDynamicHelp": false,
74
- "multiple": false,
75
- "type": "option"
76
- }
77
- },
86
+ "flags": {},
78
87
  "hasDynamicHelp": false,
79
88
  "hiddenAliases": [],
80
- "id": "init:astro",
89
+ "id": "add:auth",
81
90
  "pluginAlias": "@springmicro/cli",
82
91
  "pluginName": "@springmicro/cli",
83
92
  "pluginType": "core",
84
93
  "strict": true,
85
94
  "enableJsonFlag": false,
86
- "step": 1,
87
- "totalSteps": 2,
88
95
  "isESM": true,
89
96
  "relativePath": [
90
97
  "dist",
91
98
  "commands",
92
- "init",
93
- "astro.js"
99
+ "add",
100
+ "auth.js"
94
101
  ]
95
102
  },
96
- "init": {
103
+ "add:form": {
97
104
  "aliases": [],
98
- "args": {
99
- "projectType": {
100
- "description": "Project type (astro)",
101
- "name": "projectType",
102
- "required": true
103
- }
104
- },
105
- "description": "Initialize a JavaScript framework project according to SpringMicroHost's specifications.",
105
+ "args": {},
106
+ "description": "add a form to your project",
106
107
  "examples": [
107
- "<%= config.bin %> <%= command.id %> astro -n example"
108
+ "<%= config.bin %> <%= command.id %>"
108
109
  ],
109
110
  "flags": {
110
- "name": {
111
- "char": "n",
112
- "description": "Project name",
113
- "name": "name",
114
- "required": true,
111
+ "template": {
112
+ "char": "t",
113
+ "description": "form template (contact|quote)",
114
+ "name": "template",
115
115
  "hasDynamicHelp": false,
116
116
  "multiple": false,
117
117
  "type": "option"
@@ -119,7 +119,7 @@
119
119
  },
120
120
  "hasDynamicHelp": false,
121
121
  "hiddenAliases": [],
122
- "id": "init",
122
+ "id": "add:form",
123
123
  "pluginAlias": "@springmicro/cli",
124
124
  "pluginName": "@springmicro/cli",
125
125
  "pluginType": "core",
@@ -129,10 +129,10 @@
129
129
  "relativePath": [
130
130
  "dist",
131
131
  "commands",
132
- "init",
133
- "index.js"
132
+ "add",
133
+ "form.js"
134
134
  ]
135
135
  }
136
136
  },
137
- "version": "0.7.1"
137
+ "version": "0.7.3"
138
138
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@springmicro/cli",
3
3
  "description": "A new CLI generated with oclif",
4
- "version": "0.7.1",
4
+ "version": "0.7.3",
5
5
  "author": "David Buckley",
6
6
  "private": false,
7
7
  "publishConfig": {
@@ -76,5 +76,5 @@
76
76
  "version": "oclif readme && git add README.md"
77
77
  },
78
78
  "types": "dist/index.d.ts",
79
- "gitHead": "3fba722cf2e25b298d1b774c2b39ae8ac5743076"
79
+ "gitHead": "bdacd2971dd48131464cdbd4bb570870cee476a7"
80
80
  }