create-vue 3.0.0-beta.9 → 3.0.3
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 +7 -1
- package/package.json +12 -13
- package/template/base/_gitignore +1 -1
- package/template/base/package.json +3 -3
- package/template/code/default/src/components/HelloWorld.vue +0 -1
- package/template/code/default/src/components/TheWelcome.vue +1 -1
- package/template/code/router/src/components/TheWelcome.vue +1 -1
- package/template/code/router/src/views/HomeView.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 +1 -1
- package/template/config/jsx/package.json +1 -1
- package/template/config/pinia/package.json +1 -1
- package/template/config/typescript/package.json +3 -3
- package/template/code/typescript-router/src/main.ts +0 -9
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-vue",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.3",
|
|
4
4
|
"description": "An easy way to start a Vue project",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -13,15 +13,6 @@
|
|
|
13
13
|
"engines": {
|
|
14
14
|
"node": "^14.13.1 || >=16.0.0"
|
|
15
15
|
},
|
|
16
|
-
"scripts": {
|
|
17
|
-
"prepare": "husky install",
|
|
18
|
-
"format": "prettier --write .",
|
|
19
|
-
"build": "esbuild --bundle index.js --format=cjs --platform=node --outfile=outfile.cjs",
|
|
20
|
-
"snapshot": "node snapshot.js",
|
|
21
|
-
"pretest": "run-s build snapshot",
|
|
22
|
-
"test": "node test.js",
|
|
23
|
-
"prepublishOnly": "run-s build snapshot"
|
|
24
|
-
},
|
|
25
16
|
"repository": {
|
|
26
17
|
"type": "git",
|
|
27
18
|
"url": "git+https://github.com/vuejs/create-vue.git"
|
|
@@ -40,12 +31,20 @@
|
|
|
40
31
|
"lint-staged": "^12.1.2",
|
|
41
32
|
"minimist": "^1.2.5",
|
|
42
33
|
"npm-run-all": "^4.1.5",
|
|
43
|
-
"prettier": "^2.
|
|
34
|
+
"prettier": "^2.5.1",
|
|
44
35
|
"prompts": "^2.4.2"
|
|
45
36
|
},
|
|
46
37
|
"lint-staged": {
|
|
47
38
|
"*.{js,ts,vue,json}": [
|
|
48
39
|
"prettier --write"
|
|
49
40
|
]
|
|
50
|
-
}
|
|
51
|
-
|
|
41
|
+
},
|
|
42
|
+
"scripts": {
|
|
43
|
+
"format": "prettier --write .",
|
|
44
|
+
"build": "esbuild --bundle index.js --format=cjs --platform=node --outfile=outfile.cjs",
|
|
45
|
+
"snapshot": "node snapshot.js",
|
|
46
|
+
"pretest": "run-s build snapshot",
|
|
47
|
+
"test": "node test.js"
|
|
48
|
+
},
|
|
49
|
+
"readme": "# create-vue\n\n[](https://open.vscode.dev/vuejs/create-vue)\n\nAn easy way to start a Vue project\n\n## Usage\n\n```sh\nnpm init vue@3\n```\n\nOr, if you need to support IE11, you can create a Vue 2 project with:\n\n```sh\nnpm init vue@2\n```\n"
|
|
50
|
+
}
|
package/template/base/_gitignore
CHANGED
|
@@ -5,10 +5,10 @@
|
|
|
5
5
|
"preview": "vite preview --port 5050"
|
|
6
6
|
},
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"vue": "^3.2.
|
|
8
|
+
"vue": "^3.2.26"
|
|
9
9
|
},
|
|
10
10
|
"devDependencies": {
|
|
11
|
-
"@vitejs/plugin-vue": "^
|
|
12
|
-
"vite": "^2.
|
|
11
|
+
"@vitejs/plugin-vue": "^2.0.0",
|
|
12
|
+
"vite": "^2.7.1"
|
|
13
13
|
}
|
|
14
14
|
}
|
|
@@ -47,7 +47,7 @@ import SupportIcon from './icons/IconSupport.vue'
|
|
|
47
47
|
<template #heading>Ecosystem</template>
|
|
48
48
|
|
|
49
49
|
Get official tools and libraries for your project:
|
|
50
|
-
<a target="_blank" href="https://
|
|
50
|
+
<a target="_blank" href="https://pinia.vuejs.org/">Pinia</a>,
|
|
51
51
|
<a target="_blank" href="https://next.router.vuejs.org/">Vue Router</a>,
|
|
52
52
|
<a target="_blank" href="https://next.vue-test-utils.vuejs.org/">Vue Test Utils</a>, and
|
|
53
53
|
<a target="_blank" href="https://github.com/vuejs/devtools">Vue Dev Tools</a>. If you need more
|
|
@@ -47,7 +47,7 @@ import SupportIcon from './icons/IconSupport.vue'
|
|
|
47
47
|
<template #heading>Ecosystem</template>
|
|
48
48
|
|
|
49
49
|
Get official tools and libraries for your project:
|
|
50
|
-
<a target="_blank" href="https://
|
|
50
|
+
<a target="_blank" href="https://pinia.vuejs.org/">Pinia</a>,
|
|
51
51
|
<a target="_blank" href="https://next.router.vuejs.org/">Vue Router</a>,
|
|
52
52
|
<a target="_blank" href="https://next.vue-test-utils.vuejs.org/">Vue Test Utils</a>, and
|
|
53
53
|
<a target="_blank" href="https://github.com/vuejs/devtools">Vue Dev Tools</a>. If you need more
|
|
@@ -47,7 +47,7 @@ import SupportIcon from './icons/IconSupport.vue'
|
|
|
47
47
|
<template #heading>Ecosystem</template>
|
|
48
48
|
|
|
49
49
|
Get official tools and libraries for your project:
|
|
50
|
-
<a target="_blank" href="https://
|
|
50
|
+
<a target="_blank" href="https://pinia.vuejs.org/">Pinia</a>,
|
|
51
51
|
<a target="_blank" href="https://next.router.vuejs.org/">Vue Router</a>,
|
|
52
52
|
<a target="_blank" href="https://next.vue-test-utils.vuejs.org/">Vue Test Utils</a>, and
|
|
53
53
|
<a target="_blank" href="https://github.com/vuejs/devtools">Vue Dev Tools</a>. If you need more
|
|
@@ -47,7 +47,7 @@ import SupportIcon from './icons/IconSupport.vue'
|
|
|
47
47
|
<template #heading>Ecosystem</template>
|
|
48
48
|
|
|
49
49
|
Get official tools and libraries for your project:
|
|
50
|
-
<a target="_blank" href="https://
|
|
50
|
+
<a target="_blank" href="https://pinia.vuejs.org/">Pinia</a>,
|
|
51
51
|
<a target="_blank" href="https://next.router.vuejs.org/">Vue Router</a>,
|
|
52
52
|
<a target="_blank" href="https://next.vue-test-utils.vuejs.org/">Vue Test Utils</a>, and
|
|
53
53
|
<a target="_blank" href="https://github.com/vuejs/devtools">Vue Dev Tools</a>. If you need more
|