create-minista 2.4.4 → 2.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/README.md +6 -5
- package/dist/templates.js +7 -3
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -26,11 +26,12 @@ $ npm init minista@latest
|
|
|
26
26
|
$ npm init minista@latest my-minista-project -- --template ts
|
|
27
27
|
```
|
|
28
28
|
|
|
29
|
-
| template
|
|
30
|
-
|
|
|
31
|
-
| `basic`
|
|
32
|
-
| `
|
|
33
|
-
| `
|
|
29
|
+
| template | detail |
|
|
30
|
+
| ------------ | ----------------------------------------- |
|
|
31
|
+
| `basic` | TypeScript, Basic static site components |
|
|
32
|
+
| `basic-sass` | TypeScript, Sitemap, Delivery Zip command |
|
|
33
|
+
| `ts` | TypeScript minimum configuration |
|
|
34
|
+
| `js` | JavaScript minimum configuration |
|
|
34
35
|
|
|
35
36
|
```bash
|
|
36
37
|
# You can also use any GitHub repository
|
package/dist/templates.js
CHANGED
|
@@ -1,14 +1,18 @@
|
|
|
1
1
|
export const TEMPLATES = [
|
|
2
2
|
{
|
|
3
|
-
title: "Basic (Typescript)",
|
|
3
|
+
title: "Basic Site (Typescript)",
|
|
4
4
|
value: "basic",
|
|
5
5
|
},
|
|
6
6
|
{
|
|
7
|
-
title: "Typescript",
|
|
7
|
+
title: "SaaS Template (Typescript)",
|
|
8
|
+
value: "basic-saas",
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
title: "Minimal (Typescript)",
|
|
8
12
|
value: "ts",
|
|
9
13
|
},
|
|
10
14
|
{
|
|
11
|
-
title: "JavaScript",
|
|
15
|
+
title: "Minimal (JavaScript)",
|
|
12
16
|
value: "js",
|
|
13
17
|
},
|
|
14
18
|
];
|
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.5.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
7
|
"create-minista": "./cli.mjs"
|
|
@@ -59,6 +59,6 @@
|
|
|
59
59
|
"@types/degit": "^2.8.3",
|
|
60
60
|
"@types/prompts": "^2.0.14",
|
|
61
61
|
"@types/yargs-parser": "^21.0.0",
|
|
62
|
-
"typescript": "^4.6.
|
|
62
|
+
"typescript": "^4.6.4"
|
|
63
63
|
}
|
|
64
64
|
}
|