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.
Files changed (2) hide show
  1. package/README.md +2 -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@next
23
+ $ npm init minista@latest
24
24
 
25
25
  # Shortcut
26
- $ npm init minista@next my-minista-project -- --template ts
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.0.0-alpha.21",
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": "^20.2.1",
62
- "typescript": "^4.6.2"
61
+ "@types/yargs-parser": "^21.0.0",
62
+ "typescript": "^4.6.3"
63
63
  }
64
64
  }