create-vitrify 0.1.1 → 0.3.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/package.json +4 -4
- package/templates/quasar/package.json.hbs +4 -6
- package/templates/quasar/vitrify.config.js +6 -4
- package/templates/quasar-monorepo/packages/quasar/package.json.hbs +4 -6
- package/templates/quasar-monorepo/packages/quasar/vitrify.config.js.hbs +6 -4
- package/templates/quasar-monorepo/packages/quasar-plugin/package.json.hbs +4 -4
- package/templates/quasar-plugin/package.json.hbs +4 -4
- package/templates/vite-project/package.json.hbs +1 -1
- package/templates/vite-project/src/main.ts +1 -1
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "create-vitrify",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.3.1",
|
4
4
|
"license": "MIT",
|
5
5
|
"author": "Stefan van Herwijnen",
|
6
6
|
"type": "module",
|
@@ -13,7 +13,7 @@
|
|
13
13
|
},
|
14
14
|
"main": "dist/cli.js",
|
15
15
|
"engines": {
|
16
|
-
"node": ">=
|
16
|
+
"node": ">=16.0.0"
|
17
17
|
},
|
18
18
|
"repository": {
|
19
19
|
"type": "git",
|
@@ -33,8 +33,8 @@
|
|
33
33
|
"@types/inquirer": "^8.2.1",
|
34
34
|
"@types/minimist": "^1.2.2",
|
35
35
|
"@types/node": "^17.0.23",
|
36
|
-
"vite": "^
|
37
|
-
"vue": "^3.2.
|
36
|
+
"vite": "^3.0.0-beta.0",
|
37
|
+
"vue": "^3.2.37"
|
38
38
|
},
|
39
39
|
"files": [
|
40
40
|
"dist",
|
@@ -12,18 +12,16 @@
|
|
12
12
|
},
|
13
13
|
"author": "{{ author }}",
|
14
14
|
"dependencies": {
|
15
|
-
"fastify": "^
|
15
|
+
"@fastify/static": "^6.4.0",
|
16
|
+
"fastify": "^4.0.0",
|
16
17
|
"fastify-plugin": "^3.0.1",
|
17
|
-
"
|
18
|
-
"vue": "^3.2.31",
|
18
|
+
"vue": "^3.2.37",
|
19
19
|
"vue-router": "^4.0.12",
|
20
20
|
"@quasar/extras": "^1.13.1",
|
21
21
|
"quasar": "^2.6.0"
|
22
22
|
},
|
23
23
|
"devDependencies": {
|
24
|
-
"vitrify": "^0.
|
25
|
-
"@vitejs/plugin-vue": "^2.2.4",
|
26
|
-
"fastify-static": "^4.6.1",
|
24
|
+
"vitrify": "^0.4.0",
|
27
25
|
"typescript": "^4.6.2"
|
28
26
|
}
|
29
27
|
}
|
@@ -1,11 +1,13 @@
|
|
1
1
|
export default function ({ mode, command }) {
|
2
2
|
return {
|
3
3
|
vitrify: {
|
4
|
-
|
5
|
-
//
|
4
|
+
hooks: {
|
5
|
+
// Vitrify hooks
|
6
6
|
},
|
7
|
-
|
8
|
-
|
7
|
+
sass: {
|
8
|
+
variables: {
|
9
|
+
$primary: '#000000'
|
10
|
+
}
|
9
11
|
}
|
10
12
|
},
|
11
13
|
quasar: {
|
@@ -12,19 +12,17 @@
|
|
12
12
|
},
|
13
13
|
"author": "{{ author }}",
|
14
14
|
"dependencies": {
|
15
|
-
"fastify": "^
|
15
|
+
"@fastify/static": "^6.4.0",
|
16
|
+
"fastify": "^4.0.0",
|
16
17
|
"fastify-plugin": "^3.0.1",
|
17
|
-
"
|
18
|
-
"vue": "^3.2.31",
|
18
|
+
"vue": "^3.2.37",
|
19
19
|
"vue-router": "^4.0.12",
|
20
20
|
"@quasar/extras": "^1.13.1",
|
21
21
|
"quasar": "^2.6.0",
|
22
22
|
"quasar-plugin-{{ name }}": "^0.1.0"
|
23
23
|
},
|
24
24
|
"devDependencies": {
|
25
|
-
"vitrify": "^0.
|
26
|
-
"@vitejs/plugin-vue": "^2.2.4",
|
27
|
-
"fastify-static": "^4.6.1",
|
25
|
+
"vitrify": "^0.4.0",
|
28
26
|
"typescript": "^4.6.2"
|
29
27
|
}
|
30
28
|
}
|
@@ -6,11 +6,13 @@ export default function ({ mode, command }) {
|
|
6
6
|
VitePlugin()
|
7
7
|
],
|
8
8
|
vitrify: {
|
9
|
-
|
10
|
-
//
|
9
|
+
hooks: {
|
10
|
+
// Vitrify hooks
|
11
11
|
},
|
12
|
-
|
13
|
-
|
12
|
+
sass: {
|
13
|
+
variables: {
|
14
|
+
$primary: '#000000'
|
15
|
+
}
|
14
16
|
}
|
15
17
|
},
|
16
18
|
quasar: {
|
@@ -35,13 +35,13 @@
|
|
35
35
|
"unplugin-vue-components": "^0.18.5"
|
36
36
|
},
|
37
37
|
"devDependencies": {
|
38
|
-
"vitrify": "^0.
|
38
|
+
"vitrify": "^0.4.0",
|
39
39
|
"@types/node": "^16.11.11",
|
40
40
|
"@types/ws": "^8.5.3",
|
41
|
-
"@vitejs/plugin-vue": "^
|
41
|
+
"@vitejs/plugin-vue": "^3.0.0-alpha.1",
|
42
42
|
"typescript": "^4.6.2",
|
43
|
-
"vite": "^
|
44
|
-
"vue": "^3.2.
|
43
|
+
"vite": "^3.0.0-beta.0",
|
44
|
+
"vue": "^3.2.37",
|
45
45
|
"vue-tsc": "^0.33.9"
|
46
46
|
}
|
47
47
|
}
|
@@ -35,13 +35,13 @@
|
|
35
35
|
"unplugin-vue-components": "^0.18.5"
|
36
36
|
},
|
37
37
|
"devDependencies": {
|
38
|
-
"vitrify": "^0.
|
38
|
+
"vitrify": "^0.4.0",
|
39
39
|
"@types/node": "^16.11.11",
|
40
40
|
"@types/ws": "^8.5.3",
|
41
|
-
"@vitejs/plugin-vue": "^
|
41
|
+
"@vitejs/plugin-vue": "^3.0.0-alpha.1",
|
42
42
|
"typescript": "^4.6.2",
|
43
|
-
"vite": "^
|
44
|
-
"vue": "^3.2.
|
43
|
+
"vite": "^3.0.0-beta.0",
|
44
|
+
"vue": "^3.2.37",
|
45
45
|
"vue-tsc": "^0.33.9"
|
46
46
|
}
|
47
47
|
}
|