create-vue 3.12.1 → 3.13.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/README.md +4 -2
- package/outfile.cjs +235 -64
- package/package.json +16 -11
- package/template/bare/base/src/App.vue +7 -0
- package/template/bare/cypress-ct/src/__tests__/App.cy.js +8 -0
- package/template/bare/nightwatch-ct/src/__tests__/App.spec.js +14 -0
- package/template/bare/typescript/src/App.vue +7 -0
- package/template/bare/vitest/src/__tests__/App.spec.js +11 -0
- package/template/base/node_modules/.bin/vite +2 -2
- package/template/base/package.json +4 -4
- package/template/code/default/src/components/TheWelcome.vue +16 -12
- package/template/code/router/src/components/TheWelcome.vue +16 -12
- package/template/code/typescript-default/src/components/TheWelcome.vue +16 -12
- package/template/code/typescript-router/src/components/TheWelcome.vue +16 -12
- package/template/config/cypress/node_modules/.bin/cypress +2 -2
- package/template/config/cypress/node_modules/.bin/server-test +2 -2
- package/template/config/cypress/node_modules/.bin/start-server-and-test +2 -2
- package/template/config/cypress/node_modules/.bin/start-test +2 -2
- package/template/config/cypress/package.json +2 -2
- package/template/config/cypress-ct/node_modules/.bin/cypress +2 -2
- package/template/config/cypress-ct/package.json +2 -2
- package/template/config/jsx/node_modules/.bin/vite +2 -2
- package/template/config/jsx/package.json +3 -3
- package/template/config/nightwatch/node_modules/.bin/chromedriver +2 -2
- package/template/config/nightwatch/node_modules/.bin/geckodriver +2 -2
- package/template/config/nightwatch/node_modules/.bin/nightwatch +2 -2
- package/template/config/nightwatch/node_modules/.bin/ts-node +2 -2
- package/template/config/nightwatch/node_modules/.bin/ts-node-cwd +2 -2
- package/template/config/nightwatch/node_modules/.bin/ts-node-esm +2 -2
- package/template/config/nightwatch/node_modules/.bin/ts-node-script +2 -2
- package/template/config/nightwatch/node_modules/.bin/ts-node-transpile-only +2 -2
- package/template/config/nightwatch/node_modules/.bin/ts-script +2 -2
- package/template/config/nightwatch/node_modules/.bin/vite +2 -2
- package/template/config/nightwatch/package.json +5 -5
- package/template/config/nightwatch-ct/package.json +1 -1
- package/template/config/pinia/package.json +2 -2
- package/template/config/playwright/node_modules/.bin/playwright +2 -2
- package/template/config/playwright/package.json +1 -1
- package/template/config/router/package.json +2 -2
- package/template/config/typescript/node_modules/.bin/npm-run-all +2 -2
- package/template/config/typescript/node_modules/.bin/npm-run-all2 +2 -2
- package/template/config/typescript/node_modules/.bin/run-p +2 -2
- package/template/config/typescript/node_modules/.bin/run-s +2 -2
- package/template/config/typescript/node_modules/.bin/tsc +2 -2
- package/template/config/typescript/node_modules/.bin/tsserver +2 -2
- package/template/config/typescript/node_modules/.bin/vue-tsc +2 -2
- package/template/config/typescript/package.json +3 -3
- package/template/config/vitest/node_modules/.bin/vitest +2 -2
- package/template/config/vitest/package.json +2 -2
- package/template/eslint/package.json +2 -2
- package/template/tsconfig/base/package.json +1 -1
- package/template/tsconfig/base/tsconfig.app.json +0 -2
- package/template/tsconfig/base/tsconfig.node.json +0 -1
- package/template/tsconfig/cypress-ct/tsconfig.cypress-ct.json +0 -1
- package/template/tsconfig/nightwatch/nightwatch/tsconfig.json +0 -1
- package/template/tsconfig/nightwatch-ct/tsconfig.app.json +0 -2
- package/template/tsconfig/vitest/tsconfig.vitest.json +1 -1
- package/template/base/node_modules/.bin/rollup +0 -17
- package/template/base/node_modules/.bin/tsc +0 -17
- package/template/base/node_modules/.bin/tsserver +0 -17
- package/template/base/node_modules/.vue-global-types/vue_3.5_false.d.ts +0 -119
- package/template/config/cypress-ct/node_modules/.bin/tsc +0 -17
- package/template/config/cypress-ct/node_modules/.bin/tsserver +0 -17
- package/template/config/jsx/node_modules/.bin/browserslist +0 -17
- package/template/config/jsx/node_modules/.bin/tsc +0 -17
- package/template/config/jsx/node_modules/.bin/tsserver +0 -17
- package/template/config/nightwatch/node_modules/.bin/tsc +0 -17
- package/template/config/nightwatch/node_modules/.bin/tsserver +0 -17
- package/template/config/nightwatch-ct/node_modules/.bin/tsc +0 -17
- package/template/config/nightwatch-ct/node_modules/.bin/tsserver +0 -17
- package/template/config/pinia/node_modules/.bin/tsc +0 -17
- package/template/config/pinia/node_modules/.bin/tsserver +0 -17
- package/template/config/router/node_modules/.bin/tsc +0 -17
- package/template/config/router/node_modules/.bin/tsserver +0 -17
- package/template/config/vitest/node_modules/.bin/tsc +0 -17
- package/template/config/vitest/node_modules/.bin/tsserver +0 -17
|
@@ -7,11 +7,11 @@
|
|
|
7
7
|
"preview": "vite preview"
|
|
8
8
|
},
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"vue": "^3.5.
|
|
10
|
+
"vue": "^3.5.13"
|
|
11
11
|
},
|
|
12
12
|
"devDependencies": {
|
|
13
|
-
"@vitejs/plugin-vue": "^5.1
|
|
14
|
-
"vite": "^
|
|
15
|
-
"vite-plugin-vue-devtools": "^7.
|
|
13
|
+
"@vitejs/plugin-vue": "^5.2.1",
|
|
14
|
+
"vite": "^6.0.5",
|
|
15
|
+
"vite-plugin-vue-devtools": "^7.6.8"
|
|
16
16
|
}
|
|
17
17
|
}
|
|
@@ -5,6 +5,8 @@ import ToolingIcon from './icons/IconTooling.vue'
|
|
|
5
5
|
import EcosystemIcon from './icons/IconEcosystem.vue'
|
|
6
6
|
import CommunityIcon from './icons/IconCommunity.vue'
|
|
7
7
|
import SupportIcon from './icons/IconSupport.vue'
|
|
8
|
+
|
|
9
|
+
const openReadmeInEditor = () => fetch('/__open-in-editor?file=README.md')
|
|
8
10
|
</script>
|
|
9
11
|
|
|
10
12
|
<template>
|
|
@@ -32,15 +34,17 @@ import SupportIcon from './icons/IconSupport.vue'
|
|
|
32
34
|
+
|
|
33
35
|
<a href="https://github.com/johnsoncodehk/volar" target="_blank" rel="noopener">Volar</a>. If
|
|
34
36
|
you need to test your components and web pages, check out
|
|
35
|
-
<a href="https://
|
|
37
|
+
<a href="https://vitest.dev/" target="_blank" rel="noopener">Vite</a>
|
|
36
38
|
and
|
|
37
|
-
<a href="https://
|
|
38
|
-
|
|
39
|
-
>.
|
|
39
|
+
<a href="https://www.cypress.io/" target="_blank" rel="noopener">Cypress</a>
|
|
40
|
+
/
|
|
41
|
+
<a href="https://playwright.dev/" target="_blank" rel="noopener">Playwright</a>.
|
|
40
42
|
|
|
41
43
|
<br />
|
|
42
44
|
|
|
43
|
-
More instructions are available in
|
|
45
|
+
More instructions are available in
|
|
46
|
+
<a href="javascript:void(0)" @click="openReadmeInEditor"><code>README.md</code></a
|
|
47
|
+
>.
|
|
44
48
|
</WelcomeItem>
|
|
45
49
|
|
|
46
50
|
<WelcomeItem>
|
|
@@ -66,15 +70,15 @@ import SupportIcon from './icons/IconSupport.vue'
|
|
|
66
70
|
<template #heading>Community</template>
|
|
67
71
|
|
|
68
72
|
Got stuck? Ask your question on
|
|
69
|
-
<a href="https://chat.vuejs.org" target="_blank" rel="noopener">Vue Land</a
|
|
70
|
-
Discord server, or
|
|
73
|
+
<a href="https://chat.vuejs.org" target="_blank" rel="noopener">Vue Land</a>
|
|
74
|
+
(our official Discord server), or
|
|
71
75
|
<a href="https://stackoverflow.com/questions/tagged/vue.js" target="_blank" rel="noopener"
|
|
72
76
|
>StackOverflow</a
|
|
73
|
-
>. You should also
|
|
74
|
-
<a href="https://
|
|
75
|
-
|
|
76
|
-
<a href="https://
|
|
77
|
-
|
|
77
|
+
>. You should also follow the official
|
|
78
|
+
<a href="https://bsky.app/profile/vuejs.org" target="_blank" rel="noopener">@vuejs.org</a>
|
|
79
|
+
Bluesky account or the
|
|
80
|
+
<a href="https://x.com/vuejs" target="_blank" rel="noopener">@vuejs</a>
|
|
81
|
+
X account for latest news in the Vue world.
|
|
78
82
|
</WelcomeItem>
|
|
79
83
|
|
|
80
84
|
<WelcomeItem>
|
|
@@ -5,6 +5,8 @@ import ToolingIcon from './icons/IconTooling.vue'
|
|
|
5
5
|
import EcosystemIcon from './icons/IconEcosystem.vue'
|
|
6
6
|
import CommunityIcon from './icons/IconCommunity.vue'
|
|
7
7
|
import SupportIcon from './icons/IconSupport.vue'
|
|
8
|
+
|
|
9
|
+
const openReadmeInEditor = () => fetch('/__open-in-editor?file=README.md')
|
|
8
10
|
</script>
|
|
9
11
|
|
|
10
12
|
<template>
|
|
@@ -32,15 +34,17 @@ import SupportIcon from './icons/IconSupport.vue'
|
|
|
32
34
|
+
|
|
33
35
|
<a href="https://github.com/johnsoncodehk/volar" target="_blank" rel="noopener">Volar</a>. If
|
|
34
36
|
you need to test your components and web pages, check out
|
|
35
|
-
<a href="https://
|
|
37
|
+
<a href="https://vitest.dev/" target="_blank" rel="noopener">Vite</a>
|
|
36
38
|
and
|
|
37
|
-
<a href="https://
|
|
38
|
-
|
|
39
|
-
>.
|
|
39
|
+
<a href="https://www.cypress.io/" target="_blank" rel="noopener">Cypress</a>
|
|
40
|
+
/
|
|
41
|
+
<a href="https://playwright.dev/" target="_blank" rel="noopener">Playwright</a>.
|
|
40
42
|
|
|
41
43
|
<br />
|
|
42
44
|
|
|
43
|
-
More instructions are available in
|
|
45
|
+
More instructions are available in
|
|
46
|
+
<a href="javascript:void(0)" @click="openReadmeInEditor"><code>README.md</code></a
|
|
47
|
+
>.
|
|
44
48
|
</WelcomeItem>
|
|
45
49
|
|
|
46
50
|
<WelcomeItem>
|
|
@@ -66,15 +70,15 @@ import SupportIcon from './icons/IconSupport.vue'
|
|
|
66
70
|
<template #heading>Community</template>
|
|
67
71
|
|
|
68
72
|
Got stuck? Ask your question on
|
|
69
|
-
<a href="https://chat.vuejs.org" target="_blank" rel="noopener">Vue Land</a
|
|
70
|
-
Discord server, or
|
|
73
|
+
<a href="https://chat.vuejs.org" target="_blank" rel="noopener">Vue Land</a>
|
|
74
|
+
(our official Discord server), or
|
|
71
75
|
<a href="https://stackoverflow.com/questions/tagged/vue.js" target="_blank" rel="noopener"
|
|
72
76
|
>StackOverflow</a
|
|
73
|
-
>. You should also
|
|
74
|
-
<a href="https://
|
|
75
|
-
|
|
76
|
-
<a href="https://
|
|
77
|
-
|
|
77
|
+
>. You should also follow the official
|
|
78
|
+
<a href="https://bsky.app/profile/vuejs.org" target="_blank" rel="noopener">@vuejs.org</a>
|
|
79
|
+
Bluesky account or the
|
|
80
|
+
<a href="https://x.com/vuejs" target="_blank" rel="noopener">@vuejs</a>
|
|
81
|
+
X account for latest news in the Vue world.
|
|
78
82
|
</WelcomeItem>
|
|
79
83
|
|
|
80
84
|
<WelcomeItem>
|
|
@@ -5,6 +5,8 @@ import ToolingIcon from './icons/IconTooling.vue'
|
|
|
5
5
|
import EcosystemIcon from './icons/IconEcosystem.vue'
|
|
6
6
|
import CommunityIcon from './icons/IconCommunity.vue'
|
|
7
7
|
import SupportIcon from './icons/IconSupport.vue'
|
|
8
|
+
|
|
9
|
+
const openReadmeInEditor = () => fetch('/__open-in-editor?file=README.md')
|
|
8
10
|
</script>
|
|
9
11
|
|
|
10
12
|
<template>
|
|
@@ -32,15 +34,17 @@ import SupportIcon from './icons/IconSupport.vue'
|
|
|
32
34
|
+
|
|
33
35
|
<a href="https://github.com/johnsoncodehk/volar" target="_blank" rel="noopener">Volar</a>. If
|
|
34
36
|
you need to test your components and web pages, check out
|
|
35
|
-
<a href="https://
|
|
37
|
+
<a href="https://vitest.dev/" target="_blank" rel="noopener">Vite</a>
|
|
36
38
|
and
|
|
37
|
-
<a href="https://
|
|
38
|
-
|
|
39
|
-
>.
|
|
39
|
+
<a href="https://www.cypress.io/" target="_blank" rel="noopener">Cypress</a>
|
|
40
|
+
/
|
|
41
|
+
<a href="https://playwright.dev/" target="_blank" rel="noopener">Playwright</a>.
|
|
40
42
|
|
|
41
43
|
<br />
|
|
42
44
|
|
|
43
|
-
More instructions are available in
|
|
45
|
+
More instructions are available in
|
|
46
|
+
<a href="javascript:void(0)" @click="openReadmeInEditor"><code>README.md</code></a
|
|
47
|
+
>.
|
|
44
48
|
</WelcomeItem>
|
|
45
49
|
|
|
46
50
|
<WelcomeItem>
|
|
@@ -66,15 +70,15 @@ import SupportIcon from './icons/IconSupport.vue'
|
|
|
66
70
|
<template #heading>Community</template>
|
|
67
71
|
|
|
68
72
|
Got stuck? Ask your question on
|
|
69
|
-
<a href="https://chat.vuejs.org" target="_blank" rel="noopener">Vue Land</a
|
|
70
|
-
Discord server, or
|
|
73
|
+
<a href="https://chat.vuejs.org" target="_blank" rel="noopener">Vue Land</a>
|
|
74
|
+
(our official Discord server), or
|
|
71
75
|
<a href="https://stackoverflow.com/questions/tagged/vue.js" target="_blank" rel="noopener"
|
|
72
76
|
>StackOverflow</a
|
|
73
|
-
>. You should also
|
|
74
|
-
<a href="https://
|
|
75
|
-
|
|
76
|
-
<a href="https://
|
|
77
|
-
|
|
77
|
+
>. You should also follow the official
|
|
78
|
+
<a href="https://bsky.app/profile/vuejs.org" target="_blank" rel="noopener">@vuejs.org</a>
|
|
79
|
+
Bluesky account or the
|
|
80
|
+
<a href="https://x.com/vuejs" target="_blank" rel="noopener">@vuejs</a>
|
|
81
|
+
X account for latest news in the Vue world.
|
|
78
82
|
</WelcomeItem>
|
|
79
83
|
|
|
80
84
|
<WelcomeItem>
|
|
@@ -5,6 +5,8 @@ import ToolingIcon from './icons/IconTooling.vue'
|
|
|
5
5
|
import EcosystemIcon from './icons/IconEcosystem.vue'
|
|
6
6
|
import CommunityIcon from './icons/IconCommunity.vue'
|
|
7
7
|
import SupportIcon from './icons/IconSupport.vue'
|
|
8
|
+
|
|
9
|
+
const openReadmeInEditor = () => fetch('/__open-in-editor?file=README.md')
|
|
8
10
|
</script>
|
|
9
11
|
|
|
10
12
|
<template>
|
|
@@ -32,15 +34,17 @@ import SupportIcon from './icons/IconSupport.vue'
|
|
|
32
34
|
+
|
|
33
35
|
<a href="https://github.com/johnsoncodehk/volar" target="_blank" rel="noopener">Volar</a>. If
|
|
34
36
|
you need to test your components and web pages, check out
|
|
35
|
-
<a href="https://
|
|
37
|
+
<a href="https://vitest.dev/" target="_blank" rel="noopener">Vite</a>
|
|
36
38
|
and
|
|
37
|
-
<a href="https://
|
|
38
|
-
|
|
39
|
-
>.
|
|
39
|
+
<a href="https://www.cypress.io/" target="_blank" rel="noopener">Cypress</a>
|
|
40
|
+
/
|
|
41
|
+
<a href="https://playwright.dev/" target="_blank" rel="noopener">Playwright</a>.
|
|
40
42
|
|
|
41
43
|
<br />
|
|
42
44
|
|
|
43
|
-
More instructions are available in
|
|
45
|
+
More instructions are available in
|
|
46
|
+
<a href="javascript:void(0)" @click="openReadmeInEditor"><code>README.md</code></a
|
|
47
|
+
>.
|
|
44
48
|
</WelcomeItem>
|
|
45
49
|
|
|
46
50
|
<WelcomeItem>
|
|
@@ -66,15 +70,15 @@ import SupportIcon from './icons/IconSupport.vue'
|
|
|
66
70
|
<template #heading>Community</template>
|
|
67
71
|
|
|
68
72
|
Got stuck? Ask your question on
|
|
69
|
-
<a href="https://chat.vuejs.org" target="_blank" rel="noopener">Vue Land</a
|
|
70
|
-
Discord server, or
|
|
73
|
+
<a href="https://chat.vuejs.org" target="_blank" rel="noopener">Vue Land</a>
|
|
74
|
+
(our official Discord server), or
|
|
71
75
|
<a href="https://stackoverflow.com/questions/tagged/vue.js" target="_blank" rel="noopener"
|
|
72
76
|
>StackOverflow</a
|
|
73
|
-
>. You should also
|
|
74
|
-
<a href="https://
|
|
75
|
-
|
|
76
|
-
<a href="https://
|
|
77
|
-
|
|
77
|
+
>. You should also follow the official
|
|
78
|
+
<a href="https://bsky.app/profile/vuejs.org" target="_blank" rel="noopener">@vuejs.org</a>
|
|
79
|
+
Bluesky account or the
|
|
80
|
+
<a href="https://x.com/vuejs" target="_blank" rel="noopener">@vuejs</a>
|
|
81
|
+
X account for latest news in the Vue world.
|
|
78
82
|
</WelcomeItem>
|
|
79
83
|
|
|
80
84
|
<WelcomeItem>
|
|
@@ -6,9 +6,9 @@ case `uname` in
|
|
|
6
6
|
esac
|
|
7
7
|
|
|
8
8
|
if [ -z "$NODE_PATH" ]; then
|
|
9
|
-
export NODE_PATH="/
|
|
9
|
+
export NODE_PATH="/home/runner/work/create-vue/create-vue/node_modules/.pnpm/cypress@13.17.0/node_modules/cypress/bin/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/cypress@13.17.0/node_modules/cypress/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/cypress@13.17.0/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/node_modules"
|
|
10
10
|
else
|
|
11
|
-
export NODE_PATH="/
|
|
11
|
+
export NODE_PATH="/home/runner/work/create-vue/create-vue/node_modules/.pnpm/cypress@13.17.0/node_modules/cypress/bin/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/cypress@13.17.0/node_modules/cypress/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/cypress@13.17.0/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
12
|
fi
|
|
13
13
|
if [ -x "$basedir/node" ]; then
|
|
14
14
|
exec "$basedir/node" "$basedir/../cypress/bin/cypress" "$@"
|
|
@@ -6,9 +6,9 @@ case `uname` in
|
|
|
6
6
|
esac
|
|
7
7
|
|
|
8
8
|
if [ -z "$NODE_PATH" ]; then
|
|
9
|
-
export NODE_PATH="/
|
|
9
|
+
export NODE_PATH="/home/runner/work/create-vue/create-vue/node_modules/.pnpm/start-server-and-test@2.0.9/node_modules/start-server-and-test/src/bin/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/start-server-and-test@2.0.9/node_modules/start-server-and-test/src/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/start-server-and-test@2.0.9/node_modules/start-server-and-test/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/start-server-and-test@2.0.9/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/node_modules"
|
|
10
10
|
else
|
|
11
|
-
export NODE_PATH="/
|
|
11
|
+
export NODE_PATH="/home/runner/work/create-vue/create-vue/node_modules/.pnpm/start-server-and-test@2.0.9/node_modules/start-server-and-test/src/bin/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/start-server-and-test@2.0.9/node_modules/start-server-and-test/src/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/start-server-and-test@2.0.9/node_modules/start-server-and-test/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/start-server-and-test@2.0.9/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
12
|
fi
|
|
13
13
|
if [ -x "$basedir/node" ]; then
|
|
14
14
|
exec "$basedir/node" "$basedir/../start-server-and-test/src/bin/start.js" "$@"
|
|
@@ -6,9 +6,9 @@ case `uname` in
|
|
|
6
6
|
esac
|
|
7
7
|
|
|
8
8
|
if [ -z "$NODE_PATH" ]; then
|
|
9
|
-
export NODE_PATH="/
|
|
9
|
+
export NODE_PATH="/home/runner/work/create-vue/create-vue/node_modules/.pnpm/start-server-and-test@2.0.9/node_modules/start-server-and-test/src/bin/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/start-server-and-test@2.0.9/node_modules/start-server-and-test/src/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/start-server-and-test@2.0.9/node_modules/start-server-and-test/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/start-server-and-test@2.0.9/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/node_modules"
|
|
10
10
|
else
|
|
11
|
-
export NODE_PATH="/
|
|
11
|
+
export NODE_PATH="/home/runner/work/create-vue/create-vue/node_modules/.pnpm/start-server-and-test@2.0.9/node_modules/start-server-and-test/src/bin/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/start-server-and-test@2.0.9/node_modules/start-server-and-test/src/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/start-server-and-test@2.0.9/node_modules/start-server-and-test/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/start-server-and-test@2.0.9/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
12
|
fi
|
|
13
13
|
if [ -x "$basedir/node" ]; then
|
|
14
14
|
exec "$basedir/node" "$basedir/../start-server-and-test/src/bin/start.js" "$@"
|
|
@@ -6,9 +6,9 @@ case `uname` in
|
|
|
6
6
|
esac
|
|
7
7
|
|
|
8
8
|
if [ -z "$NODE_PATH" ]; then
|
|
9
|
-
export NODE_PATH="/
|
|
9
|
+
export NODE_PATH="/home/runner/work/create-vue/create-vue/node_modules/.pnpm/start-server-and-test@2.0.9/node_modules/start-server-and-test/src/bin/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/start-server-and-test@2.0.9/node_modules/start-server-and-test/src/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/start-server-and-test@2.0.9/node_modules/start-server-and-test/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/start-server-and-test@2.0.9/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/node_modules"
|
|
10
10
|
else
|
|
11
|
-
export NODE_PATH="/
|
|
11
|
+
export NODE_PATH="/home/runner/work/create-vue/create-vue/node_modules/.pnpm/start-server-and-test@2.0.9/node_modules/start-server-and-test/src/bin/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/start-server-and-test@2.0.9/node_modules/start-server-and-test/src/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/start-server-and-test@2.0.9/node_modules/start-server-and-test/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/start-server-and-test@2.0.9/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
12
|
fi
|
|
13
13
|
if [ -x "$basedir/node" ]; then
|
|
14
14
|
exec "$basedir/node" "$basedir/../start-server-and-test/src/bin/start.js" "$@"
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"test:e2e:dev": "start-server-and-test 'vite dev --port 4173' http://localhost:4173 'cypress open --e2e'"
|
|
5
5
|
},
|
|
6
6
|
"devDependencies": {
|
|
7
|
-
"cypress": "^13.
|
|
8
|
-
"start-server-and-test": "^2.0.
|
|
7
|
+
"cypress": "^13.17.0",
|
|
8
|
+
"start-server-and-test": "^2.0.9"
|
|
9
9
|
}
|
|
10
10
|
}
|
|
@@ -6,9 +6,9 @@ case `uname` in
|
|
|
6
6
|
esac
|
|
7
7
|
|
|
8
8
|
if [ -z "$NODE_PATH" ]; then
|
|
9
|
-
export NODE_PATH="/
|
|
9
|
+
export NODE_PATH="/home/runner/work/create-vue/create-vue/node_modules/.pnpm/cypress@13.17.0/node_modules/cypress/bin/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/cypress@13.17.0/node_modules/cypress/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/cypress@13.17.0/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/node_modules"
|
|
10
10
|
else
|
|
11
|
-
export NODE_PATH="/
|
|
11
|
+
export NODE_PATH="/home/runner/work/create-vue/create-vue/node_modules/.pnpm/cypress@13.17.0/node_modules/cypress/bin/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/cypress@13.17.0/node_modules/cypress/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/cypress@13.17.0/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
12
|
fi
|
|
13
13
|
if [ -x "$basedir/node" ]; then
|
|
14
14
|
exec "$basedir/node" "$basedir/../cypress/bin/cypress" "$@"
|
|
@@ -6,9 +6,9 @@ case `uname` in
|
|
|
6
6
|
esac
|
|
7
7
|
|
|
8
8
|
if [ -z "$NODE_PATH" ]; then
|
|
9
|
-
export NODE_PATH="/
|
|
9
|
+
export NODE_PATH="/home/runner/work/create-vue/create-vue/node_modules/.pnpm/vite@6.0.5_@types+node@22.10.2_yaml@2.6.1/node_modules/vite/bin/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/vite@6.0.5_@types+node@22.10.2_yaml@2.6.1/node_modules/vite/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/vite@6.0.5_@types+node@22.10.2_yaml@2.6.1/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/node_modules"
|
|
10
10
|
else
|
|
11
|
-
export NODE_PATH="/
|
|
11
|
+
export NODE_PATH="/home/runner/work/create-vue/create-vue/node_modules/.pnpm/vite@6.0.5_@types+node@22.10.2_yaml@2.6.1/node_modules/vite/bin/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/vite@6.0.5_@types+node@22.10.2_yaml@2.6.1/node_modules/vite/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/vite@6.0.5_@types+node@22.10.2_yaml@2.6.1/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
12
|
fi
|
|
13
13
|
if [ -x "$basedir/node" ]; then
|
|
14
14
|
exec "$basedir/node" "$basedir/../vite/bin/vite.js" "$@"
|
|
@@ -6,9 +6,9 @@ case `uname` in
|
|
|
6
6
|
esac
|
|
7
7
|
|
|
8
8
|
if [ -z "$NODE_PATH" ]; then
|
|
9
|
-
export NODE_PATH="/
|
|
9
|
+
export NODE_PATH="/home/runner/work/create-vue/create-vue/node_modules/.pnpm/chromedriver@131.0.4/node_modules/chromedriver/bin/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/chromedriver@131.0.4/node_modules/chromedriver/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/chromedriver@131.0.4/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/node_modules"
|
|
10
10
|
else
|
|
11
|
-
export NODE_PATH="/
|
|
11
|
+
export NODE_PATH="/home/runner/work/create-vue/create-vue/node_modules/.pnpm/chromedriver@131.0.4/node_modules/chromedriver/bin/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/chromedriver@131.0.4/node_modules/chromedriver/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/chromedriver@131.0.4/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
12
|
fi
|
|
13
13
|
if [ -x "$basedir/node" ]; then
|
|
14
14
|
exec "$basedir/node" "$basedir/../chromedriver/bin/chromedriver" "$@"
|
|
@@ -6,9 +6,9 @@ case `uname` in
|
|
|
6
6
|
esac
|
|
7
7
|
|
|
8
8
|
if [ -z "$NODE_PATH" ]; then
|
|
9
|
-
export NODE_PATH="/
|
|
9
|
+
export NODE_PATH="/home/runner/work/create-vue/create-vue/node_modules/.pnpm/geckodriver@5.0.0/node_modules/geckodriver/bin/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/geckodriver@5.0.0/node_modules/geckodriver/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/geckodriver@5.0.0/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/node_modules"
|
|
10
10
|
else
|
|
11
|
-
export NODE_PATH="/
|
|
11
|
+
export NODE_PATH="/home/runner/work/create-vue/create-vue/node_modules/.pnpm/geckodriver@5.0.0/node_modules/geckodriver/bin/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/geckodriver@5.0.0/node_modules/geckodriver/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/geckodriver@5.0.0/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
12
|
fi
|
|
13
13
|
if [ -x "$basedir/node" ]; then
|
|
14
14
|
exec "$basedir/node" "$basedir/../geckodriver/bin/geckodriver.js" "$@"
|
|
@@ -6,9 +6,9 @@ case `uname` in
|
|
|
6
6
|
esac
|
|
7
7
|
|
|
8
8
|
if [ -z "$NODE_PATH" ]; then
|
|
9
|
-
export NODE_PATH="/
|
|
9
|
+
export NODE_PATH="/home/runner/work/create-vue/create-vue/node_modules/.pnpm/nightwatch@3.9.0_chromedriver@131.0.4_geckodriver@5.0.0/node_modules/nightwatch/bin/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/nightwatch@3.9.0_chromedriver@131.0.4_geckodriver@5.0.0/node_modules/nightwatch/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/nightwatch@3.9.0_chromedriver@131.0.4_geckodriver@5.0.0/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/node_modules"
|
|
10
10
|
else
|
|
11
|
-
export NODE_PATH="/
|
|
11
|
+
export NODE_PATH="/home/runner/work/create-vue/create-vue/node_modules/.pnpm/nightwatch@3.9.0_chromedriver@131.0.4_geckodriver@5.0.0/node_modules/nightwatch/bin/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/nightwatch@3.9.0_chromedriver@131.0.4_geckodriver@5.0.0/node_modules/nightwatch/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/nightwatch@3.9.0_chromedriver@131.0.4_geckodriver@5.0.0/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
12
|
fi
|
|
13
13
|
if [ -x "$basedir/node" ]; then
|
|
14
14
|
exec "$basedir/node" "$basedir/../nightwatch/bin/nightwatch" "$@"
|
|
@@ -6,9 +6,9 @@ case `uname` in
|
|
|
6
6
|
esac
|
|
7
7
|
|
|
8
8
|
if [ -z "$NODE_PATH" ]; then
|
|
9
|
-
export NODE_PATH="/
|
|
9
|
+
export NODE_PATH="/home/runner/work/create-vue/create-vue/node_modules/.pnpm/ts-node@10.9.2_@types+node@22.10.2_typescript@5.6.3/node_modules/ts-node/dist/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/ts-node@10.9.2_@types+node@22.10.2_typescript@5.6.3/node_modules/ts-node/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/ts-node@10.9.2_@types+node@22.10.2_typescript@5.6.3/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/node_modules"
|
|
10
10
|
else
|
|
11
|
-
export NODE_PATH="/
|
|
11
|
+
export NODE_PATH="/home/runner/work/create-vue/create-vue/node_modules/.pnpm/ts-node@10.9.2_@types+node@22.10.2_typescript@5.6.3/node_modules/ts-node/dist/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/ts-node@10.9.2_@types+node@22.10.2_typescript@5.6.3/node_modules/ts-node/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/ts-node@10.9.2_@types+node@22.10.2_typescript@5.6.3/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
12
|
fi
|
|
13
13
|
if [ -x "$basedir/node" ]; then
|
|
14
14
|
exec "$basedir/node" "$basedir/../ts-node/dist/bin.js" "$@"
|
|
@@ -6,9 +6,9 @@ case `uname` in
|
|
|
6
6
|
esac
|
|
7
7
|
|
|
8
8
|
if [ -z "$NODE_PATH" ]; then
|
|
9
|
-
export NODE_PATH="/
|
|
9
|
+
export NODE_PATH="/home/runner/work/create-vue/create-vue/node_modules/.pnpm/ts-node@10.9.2_@types+node@22.10.2_typescript@5.6.3/node_modules/ts-node/dist/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/ts-node@10.9.2_@types+node@22.10.2_typescript@5.6.3/node_modules/ts-node/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/ts-node@10.9.2_@types+node@22.10.2_typescript@5.6.3/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/node_modules"
|
|
10
10
|
else
|
|
11
|
-
export NODE_PATH="/
|
|
11
|
+
export NODE_PATH="/home/runner/work/create-vue/create-vue/node_modules/.pnpm/ts-node@10.9.2_@types+node@22.10.2_typescript@5.6.3/node_modules/ts-node/dist/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/ts-node@10.9.2_@types+node@22.10.2_typescript@5.6.3/node_modules/ts-node/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/ts-node@10.9.2_@types+node@22.10.2_typescript@5.6.3/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
12
|
fi
|
|
13
13
|
if [ -x "$basedir/node" ]; then
|
|
14
14
|
exec "$basedir/node" "$basedir/../ts-node/dist/bin-cwd.js" "$@"
|
|
@@ -6,9 +6,9 @@ case `uname` in
|
|
|
6
6
|
esac
|
|
7
7
|
|
|
8
8
|
if [ -z "$NODE_PATH" ]; then
|
|
9
|
-
export NODE_PATH="/
|
|
9
|
+
export NODE_PATH="/home/runner/work/create-vue/create-vue/node_modules/.pnpm/ts-node@10.9.2_@types+node@22.10.2_typescript@5.6.3/node_modules/ts-node/dist/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/ts-node@10.9.2_@types+node@22.10.2_typescript@5.6.3/node_modules/ts-node/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/ts-node@10.9.2_@types+node@22.10.2_typescript@5.6.3/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/node_modules"
|
|
10
10
|
else
|
|
11
|
-
export NODE_PATH="/
|
|
11
|
+
export NODE_PATH="/home/runner/work/create-vue/create-vue/node_modules/.pnpm/ts-node@10.9.2_@types+node@22.10.2_typescript@5.6.3/node_modules/ts-node/dist/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/ts-node@10.9.2_@types+node@22.10.2_typescript@5.6.3/node_modules/ts-node/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/ts-node@10.9.2_@types+node@22.10.2_typescript@5.6.3/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
12
|
fi
|
|
13
13
|
if [ -x "$basedir/node" ]; then
|
|
14
14
|
exec "$basedir/node" "$basedir/../ts-node/dist/bin-esm.js" "$@"
|
|
@@ -6,9 +6,9 @@ case `uname` in
|
|
|
6
6
|
esac
|
|
7
7
|
|
|
8
8
|
if [ -z "$NODE_PATH" ]; then
|
|
9
|
-
export NODE_PATH="/
|
|
9
|
+
export NODE_PATH="/home/runner/work/create-vue/create-vue/node_modules/.pnpm/ts-node@10.9.2_@types+node@22.10.2_typescript@5.6.3/node_modules/ts-node/dist/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/ts-node@10.9.2_@types+node@22.10.2_typescript@5.6.3/node_modules/ts-node/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/ts-node@10.9.2_@types+node@22.10.2_typescript@5.6.3/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/node_modules"
|
|
10
10
|
else
|
|
11
|
-
export NODE_PATH="/
|
|
11
|
+
export NODE_PATH="/home/runner/work/create-vue/create-vue/node_modules/.pnpm/ts-node@10.9.2_@types+node@22.10.2_typescript@5.6.3/node_modules/ts-node/dist/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/ts-node@10.9.2_@types+node@22.10.2_typescript@5.6.3/node_modules/ts-node/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/ts-node@10.9.2_@types+node@22.10.2_typescript@5.6.3/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
12
|
fi
|
|
13
13
|
if [ -x "$basedir/node" ]; then
|
|
14
14
|
exec "$basedir/node" "$basedir/../ts-node/dist/bin-script.js" "$@"
|
|
@@ -6,9 +6,9 @@ case `uname` in
|
|
|
6
6
|
esac
|
|
7
7
|
|
|
8
8
|
if [ -z "$NODE_PATH" ]; then
|
|
9
|
-
export NODE_PATH="/
|
|
9
|
+
export NODE_PATH="/home/runner/work/create-vue/create-vue/node_modules/.pnpm/ts-node@10.9.2_@types+node@22.10.2_typescript@5.6.3/node_modules/ts-node/dist/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/ts-node@10.9.2_@types+node@22.10.2_typescript@5.6.3/node_modules/ts-node/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/ts-node@10.9.2_@types+node@22.10.2_typescript@5.6.3/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/node_modules"
|
|
10
10
|
else
|
|
11
|
-
export NODE_PATH="/
|
|
11
|
+
export NODE_PATH="/home/runner/work/create-vue/create-vue/node_modules/.pnpm/ts-node@10.9.2_@types+node@22.10.2_typescript@5.6.3/node_modules/ts-node/dist/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/ts-node@10.9.2_@types+node@22.10.2_typescript@5.6.3/node_modules/ts-node/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/ts-node@10.9.2_@types+node@22.10.2_typescript@5.6.3/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
12
|
fi
|
|
13
13
|
if [ -x "$basedir/node" ]; then
|
|
14
14
|
exec "$basedir/node" "$basedir/../ts-node/dist/bin-transpile.js" "$@"
|
|
@@ -6,9 +6,9 @@ case `uname` in
|
|
|
6
6
|
esac
|
|
7
7
|
|
|
8
8
|
if [ -z "$NODE_PATH" ]; then
|
|
9
|
-
export NODE_PATH="/
|
|
9
|
+
export NODE_PATH="/home/runner/work/create-vue/create-vue/node_modules/.pnpm/ts-node@10.9.2_@types+node@22.10.2_typescript@5.6.3/node_modules/ts-node/dist/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/ts-node@10.9.2_@types+node@22.10.2_typescript@5.6.3/node_modules/ts-node/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/ts-node@10.9.2_@types+node@22.10.2_typescript@5.6.3/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/node_modules"
|
|
10
10
|
else
|
|
11
|
-
export NODE_PATH="/
|
|
11
|
+
export NODE_PATH="/home/runner/work/create-vue/create-vue/node_modules/.pnpm/ts-node@10.9.2_@types+node@22.10.2_typescript@5.6.3/node_modules/ts-node/dist/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/ts-node@10.9.2_@types+node@22.10.2_typescript@5.6.3/node_modules/ts-node/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/ts-node@10.9.2_@types+node@22.10.2_typescript@5.6.3/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
12
|
fi
|
|
13
13
|
if [ -x "$basedir/node" ]; then
|
|
14
14
|
exec "$basedir/node" "$basedir/../ts-node/dist/bin-script-deprecated.js" "$@"
|
|
@@ -6,9 +6,9 @@ case `uname` in
|
|
|
6
6
|
esac
|
|
7
7
|
|
|
8
8
|
if [ -z "$NODE_PATH" ]; then
|
|
9
|
-
export NODE_PATH="/
|
|
9
|
+
export NODE_PATH="/home/runner/work/create-vue/create-vue/node_modules/.pnpm/vite@6.0.5_@types+node@22.10.2_yaml@2.6.1/node_modules/vite/bin/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/vite@6.0.5_@types+node@22.10.2_yaml@2.6.1/node_modules/vite/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/vite@6.0.5_@types+node@22.10.2_yaml@2.6.1/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/node_modules"
|
|
10
10
|
else
|
|
11
|
-
export NODE_PATH="/
|
|
11
|
+
export NODE_PATH="/home/runner/work/create-vue/create-vue/node_modules/.pnpm/vite@6.0.5_@types+node@22.10.2_yaml@2.6.1/node_modules/vite/bin/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/vite@6.0.5_@types+node@22.10.2_yaml@2.6.1/node_modules/vite/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/vite@6.0.5_@types+node@22.10.2_yaml@2.6.1/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
12
|
fi
|
|
13
13
|
if [ -x "$basedir/node" ]; then
|
|
14
14
|
exec "$basedir/node" "$basedir/../vite/bin/vite.js" "$@"
|