create-minista 2.0.0-alpha.21 → 2.2.1
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 +2 -2
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -20,10 +20,10 @@ You can start a minista project with a simple command entry.
|
|
|
20
20
|
|
|
21
21
|
```bash
|
|
22
22
|
# Interactive
|
|
23
|
-
$ npm init minista@
|
|
23
|
+
$ npm init minista@latest
|
|
24
24
|
|
|
25
25
|
# Shortcut
|
|
26
|
-
$ npm init minista@
|
|
26
|
+
$ npm init minista@latest my-minista-project -- --template ts
|
|
27
27
|
```
|
|
28
28
|
|
|
29
29
|
| template | detail |
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-minista",
|
|
3
3
|
"description": "Scaffolding for minista projects",
|
|
4
|
-
"version": "2.
|
|
4
|
+
"version": "2.2.1",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
7
|
"create-minista": "./cli.mjs"
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
"devDependencies": {
|
|
59
59
|
"@types/degit": "^2.8.3",
|
|
60
60
|
"@types/prompts": "^2.0.14",
|
|
61
|
-
"@types/yargs-parser": "^
|
|
62
|
-
"typescript": "^4.6.
|
|
61
|
+
"@types/yargs-parser": "^21.0.0",
|
|
62
|
+
"typescript": "^4.6.3"
|
|
63
63
|
}
|
|
64
64
|
}
|