create-vue 3.14.1 → 3.15.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 +51 -52
- package/README.md +11 -4
- package/locales/en-US.json +32 -28
- package/locales/fr-FR.json +31 -27
- package/locales/tr-TR.json +31 -27
- package/locales/zh-Hans.json +31 -27
- package/locales/zh-Hant.json +32 -32
- package/outfile.cjs +970 -2605
- package/package.json +11 -10
- package/template/base/package.json +2 -2
- package/template/config/cypress/package.json +1 -1
- package/template/config/cypress-ct/package.json +1 -1
- package/template/config/jsx/package.json +1 -1
- package/template/config/nightwatch/package.json +3 -3
- package/template/config/pinia/package.json +1 -1
- package/template/config/playwright/package.json +1 -1
- package/template/config/prettier/_gitattributes +1 -0
- package/template/config/prettier/_prettierrc.json +6 -0
- package/template/config/prettier/package.json +6 -0
- package/template/config/typescript/package.json +3 -3
- package/template/config/vitest/package.json +1 -1
- package/template/eslint/package.json +2 -2
- package/template/base/node_modules/.bin/vite +0 -17
- package/template/config/cypress/node_modules/.bin/cypress +0 -17
- package/template/config/cypress/node_modules/.bin/server-test +0 -17
- package/template/config/cypress/node_modules/.bin/start-server-and-test +0 -17
- package/template/config/cypress/node_modules/.bin/start-test +0 -17
- package/template/config/cypress-ct/node_modules/.bin/cypress +0 -17
- package/template/config/jsx/node_modules/.bin/vite +0 -17
- package/template/config/nightwatch/node_modules/.bin/chromedriver +0 -17
- package/template/config/nightwatch/node_modules/.bin/geckodriver +0 -17
- package/template/config/nightwatch/node_modules/.bin/nightwatch +0 -17
- package/template/config/nightwatch/node_modules/.bin/ts-node +0 -17
- package/template/config/nightwatch/node_modules/.bin/ts-node-cwd +0 -17
- package/template/config/nightwatch/node_modules/.bin/ts-node-esm +0 -17
- package/template/config/nightwatch/node_modules/.bin/ts-node-script +0 -17
- package/template/config/nightwatch/node_modules/.bin/ts-node-transpile-only +0 -17
- package/template/config/nightwatch/node_modules/.bin/ts-script +0 -17
- package/template/config/nightwatch/node_modules/.bin/vite +0 -17
- package/template/config/playwright/node_modules/.bin/playwright +0 -17
- package/template/config/typescript/node_modules/.bin/npm-run-all +0 -17
- package/template/config/typescript/node_modules/.bin/npm-run-all2 +0 -17
- package/template/config/typescript/node_modules/.bin/run-p +0 -17
- package/template/config/typescript/node_modules/.bin/run-s +0 -17
- package/template/config/typescript/node_modules/.bin/tsc +0 -17
- package/template/config/typescript/node_modules/.bin/tsserver +0 -17
- package/template/config/typescript/node_modules/.bin/vue-tsc +0 -17
- package/template/config/vitest/node_modules/.bin/vitest +0 -17
|
@@ -1,17 +0,0 @@
|
|
|
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="/home/runner/work/create-vue/create-vue/node_modules/.pnpm/npm-run-all2@7.0.2/node_modules/npm-run-all2/bin/run-s/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/npm-run-all2@7.0.2/node_modules/npm-run-all2/bin/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/npm-run-all2@7.0.2/node_modules/npm-run-all2/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/npm-run-all2@7.0.2/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/node_modules"
|
|
10
|
-
else
|
|
11
|
-
export NODE_PATH="/home/runner/work/create-vue/create-vue/node_modules/.pnpm/npm-run-all2@7.0.2/node_modules/npm-run-all2/bin/run-s/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/npm-run-all2@7.0.2/node_modules/npm-run-all2/bin/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/npm-run-all2@7.0.2/node_modules/npm-run-all2/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/npm-run-all2@7.0.2/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
|
-
fi
|
|
13
|
-
if [ -x "$basedir/node" ]; then
|
|
14
|
-
exec "$basedir/node" "$basedir/../npm-run-all2/bin/run-s/index.js" "$@"
|
|
15
|
-
else
|
|
16
|
-
exec node "$basedir/../npm-run-all2/bin/run-s/index.js" "$@"
|
|
17
|
-
fi
|
|
@@ -1,17 +0,0 @@
|
|
|
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="/home/runner/work/create-vue/create-vue/node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/bin/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/typescript@5.7.3/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/node_modules"
|
|
10
|
-
else
|
|
11
|
-
export NODE_PATH="/home/runner/work/create-vue/create-vue/node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/bin/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/typescript@5.7.3/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
|
-
fi
|
|
13
|
-
if [ -x "$basedir/node" ]; then
|
|
14
|
-
exec "$basedir/node" "$basedir/../typescript/bin/tsc" "$@"
|
|
15
|
-
else
|
|
16
|
-
exec node "$basedir/../typescript/bin/tsc" "$@"
|
|
17
|
-
fi
|
|
@@ -1,17 +0,0 @@
|
|
|
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="/home/runner/work/create-vue/create-vue/node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/bin/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/typescript@5.7.3/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/node_modules"
|
|
10
|
-
else
|
|
11
|
-
export NODE_PATH="/home/runner/work/create-vue/create-vue/node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/bin/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/typescript@5.7.3/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
|
-
fi
|
|
13
|
-
if [ -x "$basedir/node" ]; then
|
|
14
|
-
exec "$basedir/node" "$basedir/../typescript/bin/tsserver" "$@"
|
|
15
|
-
else
|
|
16
|
-
exec node "$basedir/../typescript/bin/tsserver" "$@"
|
|
17
|
-
fi
|
|
@@ -1,17 +0,0 @@
|
|
|
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="/home/runner/work/create-vue/create-vue/node_modules/.pnpm/vue-tsc@2.2.0_typescript@5.7.3/node_modules/vue-tsc/bin/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/vue-tsc@2.2.0_typescript@5.7.3/node_modules/vue-tsc/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/vue-tsc@2.2.0_typescript@5.7.3/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/node_modules"
|
|
10
|
-
else
|
|
11
|
-
export NODE_PATH="/home/runner/work/create-vue/create-vue/node_modules/.pnpm/vue-tsc@2.2.0_typescript@5.7.3/node_modules/vue-tsc/bin/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/vue-tsc@2.2.0_typescript@5.7.3/node_modules/vue-tsc/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/vue-tsc@2.2.0_typescript@5.7.3/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
|
-
fi
|
|
13
|
-
if [ -x "$basedir/node" ]; then
|
|
14
|
-
exec "$basedir/node" "$basedir/../vue-tsc/bin/vue-tsc.js" "$@"
|
|
15
|
-
else
|
|
16
|
-
exec node "$basedir/../vue-tsc/bin/vue-tsc.js" "$@"
|
|
17
|
-
fi
|
|
@@ -1,17 +0,0 @@
|
|
|
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="/home/runner/work/create-vue/create-vue/node_modules/.pnpm/vitest@3.0.5_@types+node@22.13.1_jsdom@26.0.0_yaml@2.7.0/node_modules/vitest/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/vitest@3.0.5_@types+node@22.13.1_jsdom@26.0.0_yaml@2.7.0/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/node_modules"
|
|
10
|
-
else
|
|
11
|
-
export NODE_PATH="/home/runner/work/create-vue/create-vue/node_modules/.pnpm/vitest@3.0.5_@types+node@22.13.1_jsdom@26.0.0_yaml@2.7.0/node_modules/vitest/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/vitest@3.0.5_@types+node@22.13.1_jsdom@26.0.0_yaml@2.7.0/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
|
-
fi
|
|
13
|
-
if [ -x "$basedir/node" ]; then
|
|
14
|
-
exec "$basedir/node" "$basedir/../vitest/vitest.mjs" "$@"
|
|
15
|
-
else
|
|
16
|
-
exec node "$basedir/../vitest/vitest.mjs" "$@"
|
|
17
|
-
fi
|