create-vue 3.2.2 → 3.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/outfile.cjs +167 -2820
- package/package.json +5 -5
- package/template/base/node_modules/.bin/vite +2 -2
- package/template/base/package.json +2 -2
- package/template/{code/default → base}/src/assets/base.css +0 -0
- package/template/{code/default → base}/src/assets/logo.svg +0 -0
- package/template/base/src/assets/main.css +35 -0
- package/template/base/vite.config.js +1 -1
- package/template/code/default/src/App.vue +5 -39
- package/template/code/router/src/App.vue +6 -40
- package/template/code/typescript-default/src/App.vue +5 -39
- package/template/code/typescript-router/src/App.vue +6 -40
- package/template/config/cypress/node_modules/.bin/cypress +2 -2
- package/template/config/cypress/package.json +3 -3
- package/template/config/cypress-ct/cypress/support/component.js +3 -0
- package/template/config/cypress-ct/cypress/support/component.ts +4 -0
- package/template/config/cypress-ct/node_modules/.bin/cypress +2 -2
- package/template/config/cypress-ct/package.json +1 -1
- package/template/config/jsx/node_modules/.bin/vite +17 -0
- package/template/config/jsx/package.json +5 -1
- package/template/config/jsx/vite.config.js +1 -1
- package/template/config/pinia/package.json +1 -1
- package/template/config/router/package.json +1 -1
- package/template/config/typescript/node_modules/.bin/vue-tsc +2 -2
- package/template/config/typescript/package.json +2 -2
- package/template/config/vitest/node_modules/.bin/vitest +2 -2
- package/template/config/vitest/package.json +2 -2
- package/template/entry/default/src/main.js +2 -0
- package/template/entry/pinia/src/main.js +2 -0
- package/template/entry/router/src/main.js +2 -0
- package/template/entry/router-and-pinia/src/main.js +2 -0
- package/template/tsconfig/cypress-ct/tsconfig.cypress-ct.json +7 -1
- package/template/code/router/src/assets/base.css +0 -74
- package/template/code/router/src/assets/logo.svg +0 -1
- package/template/code/typescript-default/src/assets/base.css +0 -74
- package/template/code/typescript-default/src/assets/logo.svg +0 -1
- package/template/code/typescript-router/src/assets/base.css +0 -74
- package/template/code/typescript-router/src/assets/logo.svg +0 -1
- package/template/config/vuex/package.json +0 -6
- package/template/config/vuex/src/store/index.js +0 -8
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-vue",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.3.1",
|
|
4
4
|
"description": "An easy way to start a Vue project",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"template"
|
|
12
12
|
],
|
|
13
13
|
"engines": {
|
|
14
|
-
"node": "^14.
|
|
14
|
+
"node": "^14.18.0 || >=16.0.0"
|
|
15
15
|
},
|
|
16
16
|
"repository": {
|
|
17
17
|
"type": "git",
|
|
@@ -25,14 +25,14 @@
|
|
|
25
25
|
},
|
|
26
26
|
"homepage": "https://github.com/vuejs/create-vue#readme",
|
|
27
27
|
"devDependencies": {
|
|
28
|
-
"@types/eslint": "^8.4.
|
|
28
|
+
"@types/eslint": "^8.4.5",
|
|
29
29
|
"@types/prompts": "^2.0.14",
|
|
30
30
|
"@vue/tsconfig": "^0.1.3",
|
|
31
|
-
"esbuild": "^0.14.
|
|
31
|
+
"esbuild": "^0.14.49",
|
|
32
32
|
"esbuild-plugin-license": "^1.2.2",
|
|
33
33
|
"husky": "^8.0.1",
|
|
34
34
|
"kolorist": "^1.5.1",
|
|
35
|
-
"lint-staged": "^13.0.
|
|
35
|
+
"lint-staged": "^13.0.3",
|
|
36
36
|
"minimist": "^1.2.6",
|
|
37
37
|
"npm-run-all": "^4.1.5",
|
|
38
38
|
"prettier": "^2.7.1",
|
|
@@ -11,7 +11,7 @@ else
|
|
|
11
11
|
export NODE_PATH="$NODE_PATH:/Users/haoqun/Developer/vuejs/create-vue/node_modules/.pnpm/node_modules"
|
|
12
12
|
fi
|
|
13
13
|
if [ -x "$basedir/node" ]; then
|
|
14
|
-
exec "$basedir/node" "$basedir/../../../../node_modules/.pnpm/vite@
|
|
14
|
+
exec "$basedir/node" "$basedir/../../../../node_modules/.pnpm/vite@3.0.1/node_modules/vite/bin/vite.js" "$@"
|
|
15
15
|
else
|
|
16
|
-
exec node "$basedir/../../../../node_modules/.pnpm/vite@
|
|
16
|
+
exec node "$basedir/../../../../node_modules/.pnpm/vite@3.0.1/node_modules/vite/bin/vite.js" "$@"
|
|
17
17
|
fi
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
@import "./base.css";
|
|
2
|
+
|
|
3
|
+
#app {
|
|
4
|
+
max-width: 1280px;
|
|
5
|
+
margin: 0 auto;
|
|
6
|
+
padding: 2rem;
|
|
7
|
+
|
|
8
|
+
font-weight: normal;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
a,
|
|
12
|
+
.green {
|
|
13
|
+
text-decoration: none;
|
|
14
|
+
color: hsla(160, 100%, 37%, 1);
|
|
15
|
+
transition: 0.4s;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
@media (hover: hover) {
|
|
19
|
+
a:hover {
|
|
20
|
+
background-color: hsla(160, 100%, 37%, 0.2);
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
@media (min-width: 1024px) {
|
|
25
|
+
body {
|
|
26
|
+
display: flex;
|
|
27
|
+
place-items: center;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
#app {
|
|
31
|
+
display: grid;
|
|
32
|
+
grid-template-columns: 1fr 1fr;
|
|
33
|
+
padding: 0 2rem;
|
|
34
|
+
}
|
|
35
|
+
}
|
|
@@ -17,17 +17,7 @@ import TheWelcome from './components/TheWelcome.vue'
|
|
|
17
17
|
</main>
|
|
18
18
|
</template>
|
|
19
19
|
|
|
20
|
-
<style>
|
|
21
|
-
@import './assets/base.css';
|
|
22
|
-
|
|
23
|
-
#app {
|
|
24
|
-
max-width: 1280px;
|
|
25
|
-
margin: 0 auto;
|
|
26
|
-
padding: 2rem;
|
|
27
|
-
|
|
28
|
-
font-weight: normal;
|
|
29
|
-
}
|
|
30
|
-
|
|
20
|
+
<style scoped>
|
|
31
21
|
header {
|
|
32
22
|
line-height: 1.5;
|
|
33
23
|
}
|
|
@@ -37,45 +27,21 @@ header {
|
|
|
37
27
|
margin: 0 auto 2rem;
|
|
38
28
|
}
|
|
39
29
|
|
|
40
|
-
a,
|
|
41
|
-
.green {
|
|
42
|
-
text-decoration: none;
|
|
43
|
-
color: hsla(160, 100%, 37%, 1);
|
|
44
|
-
transition: 0.4s;
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
@media (hover: hover) {
|
|
48
|
-
a:hover {
|
|
49
|
-
background-color: hsla(160, 100%, 37%, 0.2);
|
|
50
|
-
}
|
|
51
|
-
}
|
|
52
|
-
|
|
53
30
|
@media (min-width: 1024px) {
|
|
54
|
-
body {
|
|
55
|
-
display: flex;
|
|
56
|
-
place-items: center;
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
#app {
|
|
60
|
-
display: grid;
|
|
61
|
-
grid-template-columns: 1fr 1fr;
|
|
62
|
-
padding: 0 2rem;
|
|
63
|
-
}
|
|
64
|
-
|
|
65
31
|
header {
|
|
66
32
|
display: flex;
|
|
67
33
|
place-items: center;
|
|
68
34
|
padding-right: calc(var(--section-gap) / 2);
|
|
69
35
|
}
|
|
70
36
|
|
|
37
|
+
.logo {
|
|
38
|
+
margin: 0 2rem 0 0;
|
|
39
|
+
}
|
|
40
|
+
|
|
71
41
|
header .wrapper {
|
|
72
42
|
display: flex;
|
|
73
43
|
place-items: flex-start;
|
|
74
44
|
flex-wrap: wrap;
|
|
75
45
|
}
|
|
76
|
-
|
|
77
|
-
.logo {
|
|
78
|
-
margin: 0 2rem 0 0;
|
|
79
|
-
}
|
|
80
46
|
}
|
|
81
47
|
</style>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<script setup>
|
|
2
2
|
import { RouterLink, RouterView } from 'vue-router'
|
|
3
|
-
import HelloWorld from '
|
|
3
|
+
import HelloWorld from './components/HelloWorld.vue'
|
|
4
4
|
</script>
|
|
5
5
|
|
|
6
6
|
<template>
|
|
@@ -20,17 +20,7 @@ import HelloWorld from '@/components/HelloWorld.vue'
|
|
|
20
20
|
<RouterView />
|
|
21
21
|
</template>
|
|
22
22
|
|
|
23
|
-
<style>
|
|
24
|
-
@import '@/assets/base.css';
|
|
25
|
-
|
|
26
|
-
#app {
|
|
27
|
-
max-width: 1280px;
|
|
28
|
-
margin: 0 auto;
|
|
29
|
-
padding: 2rem;
|
|
30
|
-
|
|
31
|
-
font-weight: normal;
|
|
32
|
-
}
|
|
33
|
-
|
|
23
|
+
<style scoped>
|
|
34
24
|
header {
|
|
35
25
|
line-height: 1.5;
|
|
36
26
|
max-height: 100vh;
|
|
@@ -41,19 +31,6 @@ header {
|
|
|
41
31
|
margin: 0 auto 2rem;
|
|
42
32
|
}
|
|
43
33
|
|
|
44
|
-
a,
|
|
45
|
-
.green {
|
|
46
|
-
text-decoration: none;
|
|
47
|
-
color: hsla(160, 100%, 37%, 1);
|
|
48
|
-
transition: 0.4s;
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
@media (hover: hover) {
|
|
52
|
-
a:hover {
|
|
53
|
-
background-color: hsla(160, 100%, 37%, 0.2);
|
|
54
|
-
}
|
|
55
|
-
}
|
|
56
|
-
|
|
57
34
|
nav {
|
|
58
35
|
width: 100%;
|
|
59
36
|
font-size: 12px;
|
|
@@ -80,33 +57,22 @@ nav a:first-of-type {
|
|
|
80
57
|
}
|
|
81
58
|
|
|
82
59
|
@media (min-width: 1024px) {
|
|
83
|
-
body {
|
|
84
|
-
display: flex;
|
|
85
|
-
place-items: center;
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
#app {
|
|
89
|
-
display: grid;
|
|
90
|
-
grid-template-columns: 1fr 1fr;
|
|
91
|
-
padding: 0 2rem;
|
|
92
|
-
}
|
|
93
|
-
|
|
94
60
|
header {
|
|
95
61
|
display: flex;
|
|
96
62
|
place-items: center;
|
|
97
63
|
padding-right: calc(var(--section-gap) / 2);
|
|
98
64
|
}
|
|
99
65
|
|
|
66
|
+
.logo {
|
|
67
|
+
margin: 0 2rem 0 0;
|
|
68
|
+
}
|
|
69
|
+
|
|
100
70
|
header .wrapper {
|
|
101
71
|
display: flex;
|
|
102
72
|
place-items: flex-start;
|
|
103
73
|
flex-wrap: wrap;
|
|
104
74
|
}
|
|
105
75
|
|
|
106
|
-
.logo {
|
|
107
|
-
margin: 0 2rem 0 0;
|
|
108
|
-
}
|
|
109
|
-
|
|
110
76
|
nav {
|
|
111
77
|
text-align: left;
|
|
112
78
|
margin-left: -1rem;
|
|
@@ -17,17 +17,7 @@ import TheWelcome from './components/TheWelcome.vue'
|
|
|
17
17
|
</main>
|
|
18
18
|
</template>
|
|
19
19
|
|
|
20
|
-
<style>
|
|
21
|
-
@import './assets/base.css';
|
|
22
|
-
|
|
23
|
-
#app {
|
|
24
|
-
max-width: 1280px;
|
|
25
|
-
margin: 0 auto;
|
|
26
|
-
padding: 2rem;
|
|
27
|
-
|
|
28
|
-
font-weight: normal;
|
|
29
|
-
}
|
|
30
|
-
|
|
20
|
+
<style scoped>
|
|
31
21
|
header {
|
|
32
22
|
line-height: 1.5;
|
|
33
23
|
}
|
|
@@ -37,45 +27,21 @@ header {
|
|
|
37
27
|
margin: 0 auto 2rem;
|
|
38
28
|
}
|
|
39
29
|
|
|
40
|
-
a,
|
|
41
|
-
.green {
|
|
42
|
-
text-decoration: none;
|
|
43
|
-
color: hsla(160, 100%, 37%, 1);
|
|
44
|
-
transition: 0.4s;
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
@media (hover: hover) {
|
|
48
|
-
a:hover {
|
|
49
|
-
background-color: hsla(160, 100%, 37%, 0.2);
|
|
50
|
-
}
|
|
51
|
-
}
|
|
52
|
-
|
|
53
30
|
@media (min-width: 1024px) {
|
|
54
|
-
body {
|
|
55
|
-
display: flex;
|
|
56
|
-
place-items: center;
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
#app {
|
|
60
|
-
display: grid;
|
|
61
|
-
grid-template-columns: 1fr 1fr;
|
|
62
|
-
padding: 0 2rem;
|
|
63
|
-
}
|
|
64
|
-
|
|
65
31
|
header {
|
|
66
32
|
display: flex;
|
|
67
33
|
place-items: center;
|
|
68
34
|
padding-right: calc(var(--section-gap) / 2);
|
|
69
35
|
}
|
|
70
36
|
|
|
37
|
+
.logo {
|
|
38
|
+
margin: 0 2rem 0 0;
|
|
39
|
+
}
|
|
40
|
+
|
|
71
41
|
header .wrapper {
|
|
72
42
|
display: flex;
|
|
73
43
|
place-items: flex-start;
|
|
74
44
|
flex-wrap: wrap;
|
|
75
45
|
}
|
|
76
|
-
|
|
77
|
-
.logo {
|
|
78
|
-
margin: 0 2rem 0 0;
|
|
79
|
-
}
|
|
80
46
|
}
|
|
81
47
|
</style>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<script setup lang="ts">
|
|
2
2
|
import { RouterLink, RouterView } from 'vue-router'
|
|
3
|
-
import HelloWorld from '
|
|
3
|
+
import HelloWorld from './components/HelloWorld.vue'
|
|
4
4
|
</script>
|
|
5
5
|
|
|
6
6
|
<template>
|
|
@@ -20,17 +20,7 @@ import HelloWorld from '@/components/HelloWorld.vue'
|
|
|
20
20
|
<RouterView />
|
|
21
21
|
</template>
|
|
22
22
|
|
|
23
|
-
<style>
|
|
24
|
-
@import '@/assets/base.css';
|
|
25
|
-
|
|
26
|
-
#app {
|
|
27
|
-
max-width: 1280px;
|
|
28
|
-
margin: 0 auto;
|
|
29
|
-
padding: 2rem;
|
|
30
|
-
|
|
31
|
-
font-weight: normal;
|
|
32
|
-
}
|
|
33
|
-
|
|
23
|
+
<style scoped>
|
|
34
24
|
header {
|
|
35
25
|
line-height: 1.5;
|
|
36
26
|
max-height: 100vh;
|
|
@@ -41,19 +31,6 @@ header {
|
|
|
41
31
|
margin: 0 auto 2rem;
|
|
42
32
|
}
|
|
43
33
|
|
|
44
|
-
a,
|
|
45
|
-
.green {
|
|
46
|
-
text-decoration: none;
|
|
47
|
-
color: hsla(160, 100%, 37%, 1);
|
|
48
|
-
transition: 0.4s;
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
@media (hover: hover) {
|
|
52
|
-
a:hover {
|
|
53
|
-
background-color: hsla(160, 100%, 37%, 0.2);
|
|
54
|
-
}
|
|
55
|
-
}
|
|
56
|
-
|
|
57
34
|
nav {
|
|
58
35
|
width: 100%;
|
|
59
36
|
font-size: 12px;
|
|
@@ -80,33 +57,22 @@ nav a:first-of-type {
|
|
|
80
57
|
}
|
|
81
58
|
|
|
82
59
|
@media (min-width: 1024px) {
|
|
83
|
-
body {
|
|
84
|
-
display: flex;
|
|
85
|
-
place-items: center;
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
#app {
|
|
89
|
-
display: grid;
|
|
90
|
-
grid-template-columns: 1fr 1fr;
|
|
91
|
-
padding: 0 2rem;
|
|
92
|
-
}
|
|
93
|
-
|
|
94
60
|
header {
|
|
95
61
|
display: flex;
|
|
96
62
|
place-items: center;
|
|
97
63
|
padding-right: calc(var(--section-gap) / 2);
|
|
98
64
|
}
|
|
99
65
|
|
|
66
|
+
.logo {
|
|
67
|
+
margin: 0 2rem 0 0;
|
|
68
|
+
}
|
|
69
|
+
|
|
100
70
|
header .wrapper {
|
|
101
71
|
display: flex;
|
|
102
72
|
place-items: flex-start;
|
|
103
73
|
flex-wrap: wrap;
|
|
104
74
|
}
|
|
105
75
|
|
|
106
|
-
.logo {
|
|
107
|
-
margin: 0 2rem 0 0;
|
|
108
|
-
}
|
|
109
|
-
|
|
110
76
|
nav {
|
|
111
77
|
text-align: left;
|
|
112
78
|
margin-left: -1rem;
|
|
@@ -11,7 +11,7 @@ else
|
|
|
11
11
|
export NODE_PATH="$NODE_PATH:/Users/haoqun/Developer/vuejs/create-vue/node_modules/.pnpm/node_modules"
|
|
12
12
|
fi
|
|
13
13
|
if [ -x "$basedir/node" ]; then
|
|
14
|
-
exec "$basedir/node" "$basedir/../../../../../node_modules/.pnpm/cypress@10.
|
|
14
|
+
exec "$basedir/node" "$basedir/../../../../../node_modules/.pnpm/cypress@10.3.0/node_modules/cypress/bin/cypress" "$@"
|
|
15
15
|
else
|
|
16
|
-
exec node "$basedir/../../../../../node_modules/.pnpm/cypress@10.
|
|
16
|
+
exec node "$basedir/../../../../../node_modules/.pnpm/cypress@10.3.0/node_modules/cypress/bin/cypress" "$@"
|
|
17
17
|
fi
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"scripts": {
|
|
3
|
-
"test:e2e": "start-server-and-test preview http://
|
|
4
|
-
"test:e2e:ci": "start-server-and-test preview http://
|
|
3
|
+
"test:e2e": "start-server-and-test preview http://localhost:4173/ 'cypress open --e2e'",
|
|
4
|
+
"test:e2e:ci": "start-server-and-test preview http://localhost:4173/ 'cypress run --e2e'"
|
|
5
5
|
},
|
|
6
6
|
"devDependencies": {
|
|
7
|
-
"cypress": "^10.
|
|
7
|
+
"cypress": "^10.3.0",
|
|
8
8
|
"start-server-and-test": "^1.14.0"
|
|
9
9
|
}
|
|
10
10
|
}
|
|
@@ -19,12 +19,16 @@ import './commands'
|
|
|
19
19
|
// Alternatively you can use CommonJS syntax:
|
|
20
20
|
// require('./commands')
|
|
21
21
|
|
|
22
|
+
// Import global styles
|
|
23
|
+
import '@/assets/main.css'
|
|
24
|
+
|
|
22
25
|
import { mount } from 'cypress/vue'
|
|
23
26
|
|
|
24
27
|
// Augment the Cypress namespace to include type definitions for
|
|
25
28
|
// your custom command.
|
|
26
29
|
// Alternatively, can be defined in cypress/support/component.d.ts
|
|
27
30
|
// with a <reference path="./component" /> at the top of your spec.
|
|
31
|
+
/* eslint-disable @typescript-eslint/no-namespace */
|
|
28
32
|
declare global {
|
|
29
33
|
namespace Cypress {
|
|
30
34
|
interface Chainable {
|
|
@@ -11,7 +11,7 @@ else
|
|
|
11
11
|
export NODE_PATH="$NODE_PATH:/Users/haoqun/Developer/vuejs/create-vue/node_modules/.pnpm/node_modules"
|
|
12
12
|
fi
|
|
13
13
|
if [ -x "$basedir/node" ]; then
|
|
14
|
-
exec "$basedir/node" "$basedir/../../../../../node_modules/.pnpm/cypress@10.
|
|
14
|
+
exec "$basedir/node" "$basedir/../../../../../node_modules/.pnpm/cypress@10.3.0/node_modules/cypress/bin/cypress" "$@"
|
|
15
15
|
else
|
|
16
|
-
exec node "$basedir/../../../../../node_modules/.pnpm/cypress@10.
|
|
16
|
+
exec node "$basedir/../../../../../node_modules/.pnpm/cypress@10.3.0/node_modules/cypress/bin/cypress" "$@"
|
|
17
17
|
fi
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
#!/bin/sh
|
|
2
|
+
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
3
|
+
|
|
4
|
+
case `uname` in
|
|
5
|
+
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
|
6
|
+
esac
|
|
7
|
+
|
|
8
|
+
if [ -z "$NODE_PATH" ]; then
|
|
9
|
+
export NODE_PATH="/Users/haoqun/Developer/vuejs/create-vue/node_modules/.pnpm/node_modules"
|
|
10
|
+
else
|
|
11
|
+
export NODE_PATH="$NODE_PATH:/Users/haoqun/Developer/vuejs/create-vue/node_modules/.pnpm/node_modules"
|
|
12
|
+
fi
|
|
13
|
+
if [ -x "$basedir/node" ]; then
|
|
14
|
+
exec "$basedir/node" "$basedir/../../../../../node_modules/.pnpm/vite@3.0.1/node_modules/vite/bin/vite.js" "$@"
|
|
15
|
+
else
|
|
16
|
+
exec node "$basedir/../../../../../node_modules/.pnpm/vite@3.0.1/node_modules/vite/bin/vite.js" "$@"
|
|
17
|
+
fi
|
|
@@ -11,7 +11,7 @@ else
|
|
|
11
11
|
export NODE_PATH="$NODE_PATH:/Users/haoqun/Developer/vuejs/create-vue/node_modules/.pnpm/node_modules"
|
|
12
12
|
fi
|
|
13
13
|
if [ -x "$basedir/node" ]; then
|
|
14
|
-
exec "$basedir/node" "$basedir/../../../../../node_modules/.pnpm/vue-tsc@0.38.
|
|
14
|
+
exec "$basedir/node" "$basedir/../../../../../node_modules/.pnpm/vue-tsc@0.38.8_typescript@4.7.4/node_modules/vue-tsc/bin/vue-tsc.js" "$@"
|
|
15
15
|
else
|
|
16
|
-
exec node "$basedir/../../../../../node_modules/.pnpm/vue-tsc@0.38.
|
|
16
|
+
exec node "$basedir/../../../../../node_modules/.pnpm/vue-tsc@0.38.8_typescript@4.7.4/node_modules/vue-tsc/bin/vue-tsc.js" "$@"
|
|
17
17
|
fi
|
|
@@ -11,7 +11,7 @@ else
|
|
|
11
11
|
export NODE_PATH="$NODE_PATH:/Users/haoqun/Developer/vuejs/create-vue/node_modules/.pnpm/node_modules"
|
|
12
12
|
fi
|
|
13
13
|
if [ -x "$basedir/node" ]; then
|
|
14
|
-
exec "$basedir/node" "$basedir/../../../../../node_modules/.pnpm/vitest@0.
|
|
14
|
+
exec "$basedir/node" "$basedir/../../../../../node_modules/.pnpm/vitest@0.18.1_jsdom@20.0.0/node_modules/vitest/vitest.mjs" "$@"
|
|
15
15
|
else
|
|
16
|
-
exec node "$basedir/../../../../../node_modules/.pnpm/vitest@0.
|
|
16
|
+
exec node "$basedir/../../../../../node_modules/.pnpm/vitest@0.18.1_jsdom@20.0.0/node_modules/vitest/vitest.mjs" "$@"
|
|
17
17
|
fi
|
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"extends": "./tsconfig.app.json",
|
|
3
|
-
"include": [
|
|
3
|
+
"include": [
|
|
4
|
+
"env.d.ts",
|
|
5
|
+
"src/**/*",
|
|
6
|
+
"src/**/*.vue",
|
|
7
|
+
"cypress/support/component.*",
|
|
8
|
+
"cypress/support/commands.ts"
|
|
9
|
+
],
|
|
4
10
|
"exclude": [],
|
|
5
11
|
"compilerOptions": {
|
|
6
12
|
"composite": true
|