create-vitrify 0.5.2 → 0.6.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/dist/templates.js
CHANGED
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "create-vitrify",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.6.0",
|
4
4
|
"license": "MIT",
|
5
5
|
"author": "Stefan van Herwijnen",
|
6
6
|
"type": "module",
|
@@ -21,17 +21,17 @@
|
|
21
21
|
},
|
22
22
|
"homepage": "https://github.com/simsustech/vitrify/tree/main/packages/create-vitrify#readme",
|
23
23
|
"dependencies": {
|
24
|
-
"@vitrify/tools": "^0.
|
24
|
+
"@vitrify/tools": "^0.3.0",
|
25
25
|
"handlebars": "^4.7.8",
|
26
|
-
"@inquirer/prompts": "^7.
|
26
|
+
"@inquirer/prompts": "^7.2.0",
|
27
27
|
"latest-version": "^9.0.0",
|
28
28
|
"minimist": "^1.2.8"
|
29
29
|
},
|
30
30
|
"devDependencies": {
|
31
31
|
"@types/minimist": "^1.2.5",
|
32
|
-
"@types/node": "^22.
|
33
|
-
"typescript": "^5.
|
34
|
-
"vite": "^
|
32
|
+
"@types/node": "^22.10.2",
|
33
|
+
"typescript": "^5.7.2",
|
34
|
+
"vite": "^6.0.3",
|
35
35
|
"vue": "^3.5.13"
|
36
36
|
},
|
37
37
|
"files": [
|
@@ -7,6 +7,12 @@ export default async function ({ mode, command }): Promise<VitrifyConfig> {
|
|
7
7
|
hooks: {
|
8
8
|
onSetup: [new URL('src/setup.ts', import.meta.url)]
|
9
9
|
},
|
10
|
+
/*
|
11
|
+
* Experimental
|
12
|
+
*/
|
13
|
+
// unocss: {
|
14
|
+
// presets: [QuasarPreset()]
|
15
|
+
// },
|
10
16
|
sass: {
|
11
17
|
variables: {
|
12
18
|
$primary: '#000000'
|
@@ -25,6 +31,10 @@ export default async function ({ mode, command }): Promise<VitrifyConfig> {
|
|
25
31
|
iconSet: 'svg-material-icons',
|
26
32
|
plugins: ['Dialog', 'Notify']
|
27
33
|
}
|
34
|
+
/*
|
35
|
+
* Disable SASS if you use UnoCSS
|
36
|
+
*/
|
37
|
+
// disableSass: true
|
28
38
|
}
|
29
39
|
}
|
30
40
|
if (mode === 'development') {
|