create-vue 3.15.1 → 3.16.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/LICENSE +109 -88
- package/bundle.js +3164 -0
- package/package.json +12 -12
- package/template/base/.vscode/settings.json +1 -1
- package/template/base/package.json +2 -2
- package/template/code/default/src/components/TheWelcome.vue +1 -1
- package/template/code/router/src/components/TheWelcome.vue +1 -1
- package/template/code/typescript-default/src/components/TheWelcome.vue +1 -1
- package/template/code/typescript-router/src/components/TheWelcome.vue +1 -1
- package/template/config/cypress/package.json +2 -2
- package/template/config/cypress-ct/package.json +1 -1
- package/template/config/jsx/package.json +2 -2
- package/template/config/nightwatch/package.json +4 -4
- package/template/config/oxlint/.vscode/extensions.json +3 -0
- package/template/config/playwright/package.json +1 -1
- package/template/config/typescript/package.json +1 -1
- package/template/config/vitest/package.json +1 -1
- package/template/eslint/package.json +1 -1
- package/template/tsconfig/base/package.json +1 -1
- package/outfile.cjs +0 -2810
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-vue",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.16.0",
|
|
4
4
|
"description": "🛠️ The recommended way to start a Vite-powered Vue project",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
|
-
"create-vue": "
|
|
7
|
+
"create-vue": "bundle.js"
|
|
8
8
|
},
|
|
9
9
|
"files": [
|
|
10
10
|
"locales",
|
|
11
|
-
"
|
|
11
|
+
"bundle.js",
|
|
12
12
|
"template",
|
|
13
13
|
"!template/**/node_modules/.bin/*"
|
|
14
14
|
],
|
|
@@ -28,21 +28,21 @@
|
|
|
28
28
|
"homepage": "https://github.com/vuejs/create-vue#readme",
|
|
29
29
|
"devDependencies": {
|
|
30
30
|
"@clack/prompts": "^0.10.0",
|
|
31
|
-
"@tsconfig/node22": "^22.0.
|
|
31
|
+
"@tsconfig/node22": "^22.0.1",
|
|
32
32
|
"@types/eslint": "^9.6.1",
|
|
33
|
-
"@types/node": "^22.13.
|
|
33
|
+
"@types/node": "^22.13.14",
|
|
34
34
|
"@types/prompts": "^2.4.9",
|
|
35
|
-
"@vue/create-eslint-config": "^0.
|
|
35
|
+
"@vue/create-eslint-config": "^0.10.1",
|
|
36
36
|
"@vue/tsconfig": "^0.7.0",
|
|
37
37
|
"ejs": "^3.1.10",
|
|
38
|
-
"esbuild": "^0.25.0",
|
|
39
|
-
"esbuild-plugin-license": "^1.2.3",
|
|
40
38
|
"husky": "^9.1.7",
|
|
41
|
-
"lint-staged": "^15.
|
|
39
|
+
"lint-staged": "^15.5.0",
|
|
42
40
|
"picocolors": "^1.1.1",
|
|
43
41
|
"prettier": "3.5.3",
|
|
44
|
-
"
|
|
45
|
-
"
|
|
42
|
+
"rolldown": "1.0.0-beta.7",
|
|
43
|
+
"rollup-plugin-license": "^3.6.0",
|
|
44
|
+
"vitest": "^3.1.1",
|
|
45
|
+
"zx": "^8.4.1"
|
|
46
46
|
},
|
|
47
47
|
"lint-staged": {
|
|
48
48
|
"*.{js,ts,vue,json}": [
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
},
|
|
56
56
|
"scripts": {
|
|
57
57
|
"format": "prettier --write .",
|
|
58
|
-
"build": "
|
|
58
|
+
"build": "rolldown -c rolldown.config.ts",
|
|
59
59
|
"snapshot": "zx ./scripts/snapshot.mjs",
|
|
60
60
|
"pretest": "pnpm run build && pnpm run snapshot",
|
|
61
61
|
"test": "zx ./scripts/test.mjs",
|
|
@@ -3,6 +3,6 @@
|
|
|
3
3
|
"explorer.fileNesting.patterns": {
|
|
4
4
|
"tsconfig.json": "tsconfig.*.json, env.d.ts",
|
|
5
5
|
"vite.config.*": "jsconfig*, vitest.config.*, cypress.config.*, playwright.config.*",
|
|
6
|
-
"package.json": "package-lock.json, pnpm*, .yarnrc*, yarn*, .eslint*, eslint*, .prettier*, prettier*, .editorconfig"
|
|
6
|
+
"package.json": "package-lock.json, pnpm*, .yarnrc*, yarn*, .eslint*, eslint*, .oxlint*, oxlint*, .prettier*, prettier*, .editorconfig"
|
|
7
7
|
}
|
|
8
8
|
}
|
|
@@ -32,7 +32,7 @@ const openReadmeInEditor = () => fetch('/__open-in-editor?file=README.md')
|
|
|
32
32
|
recommended IDE setup is
|
|
33
33
|
<a href="https://code.visualstudio.com/" target="_blank" rel="noopener">VSCode</a>
|
|
34
34
|
+
|
|
35
|
-
<a href="https://github.com/
|
|
35
|
+
<a href="https://github.com/vuejs/language-tools" target="_blank" rel="noopener">Vue - Official</a>. If
|
|
36
36
|
you need to test your components and web pages, check out
|
|
37
37
|
<a href="https://vitest.dev/" target="_blank" rel="noopener">Vitest</a>
|
|
38
38
|
and
|
|
@@ -32,7 +32,7 @@ const openReadmeInEditor = () => fetch('/__open-in-editor?file=README.md')
|
|
|
32
32
|
recommended IDE setup is
|
|
33
33
|
<a href="https://code.visualstudio.com/" target="_blank" rel="noopener">VSCode</a>
|
|
34
34
|
+
|
|
35
|
-
<a href="https://github.com/
|
|
35
|
+
<a href="https://github.com/vuejs/language-tools" target="_blank" rel="noopener">Vue - Official</a>. If
|
|
36
36
|
you need to test your components and web pages, check out
|
|
37
37
|
<a href="https://vitest.dev/" target="_blank" rel="noopener">Vitest</a>
|
|
38
38
|
and
|
|
@@ -32,7 +32,7 @@ const openReadmeInEditor = () => fetch('/__open-in-editor?file=README.md')
|
|
|
32
32
|
recommended IDE setup is
|
|
33
33
|
<a href="https://code.visualstudio.com/" target="_blank" rel="noopener">VSCode</a>
|
|
34
34
|
+
|
|
35
|
-
<a href="https://github.com/
|
|
35
|
+
<a href="https://github.com/vuejs/language-tools" target="_blank" rel="noopener">Vue - Official</a>. If
|
|
36
36
|
you need to test your components and web pages, check out
|
|
37
37
|
<a href="https://vitest.dev/" target="_blank" rel="noopener">Vitest</a>
|
|
38
38
|
and
|
|
@@ -32,7 +32,7 @@ const openReadmeInEditor = () => fetch('/__open-in-editor?file=README.md')
|
|
|
32
32
|
recommended IDE setup is
|
|
33
33
|
<a href="https://code.visualstudio.com/" target="_blank" rel="noopener">VSCode</a>
|
|
34
34
|
+
|
|
35
|
-
<a href="https://github.com/
|
|
35
|
+
<a href="https://github.com/vuejs/language-tools" target="_blank" rel="noopener">Vue - Official</a>. If
|
|
36
36
|
you need to test your components and web pages, check out
|
|
37
37
|
<a href="https://vitest.dev/" target="_blank" rel="noopener">Vitest</a>
|
|
38
38
|
and
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"test:e2e:dev": "start-server-and-test 'vite dev --port 4173' http://localhost:4173 'cypress open --e2e'"
|
|
6
6
|
},
|
|
7
7
|
"devDependencies": {
|
|
8
|
-
"cypress": "^14.1
|
|
9
|
-
"start-server-and-test": "^2.0.
|
|
8
|
+
"cypress": "^14.2.1",
|
|
9
|
+
"start-server-and-test": "^2.0.11"
|
|
10
10
|
}
|
|
11
11
|
}
|
|
@@ -4,12 +4,12 @@
|
|
|
4
4
|
},
|
|
5
5
|
"devDependencies": {
|
|
6
6
|
"@nightwatch/vue": "^3.1.2",
|
|
7
|
-
"@vitejs/plugin-vue": "^5.2.
|
|
8
|
-
"chromedriver": "^134.0.
|
|
7
|
+
"@vitejs/plugin-vue": "^5.2.3",
|
|
8
|
+
"chromedriver": "^134.0.5",
|
|
9
9
|
"geckodriver": "^5.0.0",
|
|
10
|
-
"nightwatch": "^3.12.
|
|
10
|
+
"nightwatch": "^3.12.1",
|
|
11
11
|
"ts-node": "^10.9.2",
|
|
12
|
-
"vite": "^6.2.
|
|
12
|
+
"vite": "^6.2.4",
|
|
13
13
|
"vite-plugin-nightwatch": "^0.4.6"
|
|
14
14
|
}
|
|
15
15
|
}
|