create-kide-app 0.4.0 → 0.5.0
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/index.js +1 -1
- package/package.json +6 -6
package/index.js
CHANGED
|
@@ -164,7 +164,7 @@ const parseArgs = (argv) => {
|
|
|
164
164
|
// --- Main ---
|
|
165
165
|
|
|
166
166
|
async function main() {
|
|
167
|
-
p.intro("
|
|
167
|
+
p.intro("\x1b[34m▣\x1b[39m Create Kide CMS Project");
|
|
168
168
|
|
|
169
169
|
const { flags, positional } = parseArgs(process.argv.slice(2));
|
|
170
170
|
if (flags.unknown) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-kide-app",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.0",
|
|
4
4
|
"description": "Scaffold a new Kide CMS project",
|
|
5
5
|
"author": "Matti Hernesniemi",
|
|
6
6
|
"license": "MIT",
|
|
@@ -8,10 +8,6 @@
|
|
|
8
8
|
"bin": {
|
|
9
9
|
"create-kide-app": "./index.js"
|
|
10
10
|
},
|
|
11
|
-
"scripts": {
|
|
12
|
-
"release": "npm version patch && git push --follow-tags && npm publish",
|
|
13
|
-
"release:minor": "npm version minor && git push --follow-tags && npm publish"
|
|
14
|
-
},
|
|
15
11
|
"files": [
|
|
16
12
|
"index.js"
|
|
17
13
|
],
|
|
@@ -32,5 +28,9 @@
|
|
|
32
28
|
},
|
|
33
29
|
"dependencies": {
|
|
34
30
|
"@clack/prompts": "^1.1.0"
|
|
31
|
+
},
|
|
32
|
+
"scripts": {
|
|
33
|
+
"release": "npm version patch && git push --follow-tags && npm publish",
|
|
34
|
+
"release:minor": "npm version minor && git push --follow-tags && npm publish"
|
|
35
35
|
}
|
|
36
|
-
}
|
|
36
|
+
}
|