create-vue 3.13.0 → 3.14.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.
Files changed (35) hide show
  1. package/README.md +4 -1
  2. package/outfile.cjs +99 -74
  3. package/package.json +6 -6
  4. package/template/base/node_modules/.bin/vite +2 -2
  5. package/template/base/package.json +2 -2
  6. package/template/base/vite.config.js.data.mjs +1 -1
  7. package/template/config/cypress/cypress/{e2e/jsconfig.json → jsconfig.json} +2 -1
  8. package/template/config/cypress/node_modules/.bin/cypress +2 -2
  9. package/template/config/cypress/node_modules/.bin/server-test +2 -2
  10. package/template/config/cypress/node_modules/.bin/start-server-and-test +2 -2
  11. package/template/config/cypress/node_modules/.bin/start-test +2 -2
  12. package/template/config/cypress/package.json +2 -2
  13. package/template/config/cypress-ct/node_modules/.bin/cypress +2 -2
  14. package/template/config/cypress-ct/package.json +1 -1
  15. package/template/config/jsx/node_modules/.bin/vite +2 -2
  16. package/template/config/jsx/package.json +1 -1
  17. package/template/config/nightwatch/node_modules/.bin/chromedriver +2 -2
  18. package/template/config/nightwatch/node_modules/.bin/nightwatch +2 -2
  19. package/template/config/nightwatch/node_modules/.bin/ts-node +2 -2
  20. package/template/config/nightwatch/node_modules/.bin/ts-node-cwd +2 -2
  21. package/template/config/nightwatch/node_modules/.bin/ts-node-esm +2 -2
  22. package/template/config/nightwatch/node_modules/.bin/ts-node-script +2 -2
  23. package/template/config/nightwatch/node_modules/.bin/ts-node-transpile-only +2 -2
  24. package/template/config/nightwatch/node_modules/.bin/ts-script +2 -2
  25. package/template/config/nightwatch/node_modules/.bin/vite +2 -2
  26. package/template/config/nightwatch/package.json +3 -3
  27. package/template/config/pinia/package.json +1 -1
  28. package/template/config/typescript/node_modules/.bin/tsc +2 -2
  29. package/template/config/typescript/node_modules/.bin/tsserver +2 -2
  30. package/template/config/typescript/node_modules/.bin/vue-tsc +2 -2
  31. package/template/config/typescript/package.json +3 -3
  32. package/template/config/vitest/node_modules/.bin/vitest +2 -2
  33. package/template/config/vitest/package.json +2 -2
  34. package/template/eslint/package.json +1 -1
  35. package/template/tsconfig/base/tsconfig.node.json +2 -1
package/README.md CHANGED
@@ -17,7 +17,10 @@ npm create vue@latest
17
17
  > [!NOTE]
18
18
  > (`@latest` or `@legacy`) MUST NOT be omitted, otherwise `npm` may resolve to a cached and outdated version of the package.
19
19
 
20
- By default the command will run in interactive mode, but you can also provide feature flags in the CLI arguments to skip the prompts. Run `npm create vue@latest --help` to see all available options.
20
+ By default the command will run in interactive mode, but you can also provide feature flags in the CLI arguments to skip the prompts. Run `npm create vue@latest -- --help` to see all available options.
21
+
22
+ > [!NOTE]
23
+ > If you're using PowerShell, you'll need to quote the `--`, that is, run `npm create vue@latest '--' --help`.
21
24
 
22
25
  If you need to support IE11, you can create a Vue 2 project with:
23
26
 
package/outfile.cjs CHANGED
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env node
2
- /*! create-vue v3.13.0 | MIT */
2
+ /*! create-vue v3.14.0 | MIT */
3
3
  var __create = Object.create;
4
4
  var __defProp = Object.defineProperty;
5
5
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
@@ -3424,11 +3424,14 @@ ${commandFor("lint")}
3424
3424
  var fs3 = __toESM(require("fs"), 1);
3425
3425
  var path3 = __toESM(require("path"), 1);
3426
3426
  function linkLocale(locale) {
3427
+ if (locale === "C") {
3428
+ return "en-US";
3429
+ }
3427
3430
  let linkedLocale;
3428
3431
  try {
3429
3432
  linkedLocale = Intl.getCanonicalLocales(locale)[0];
3430
3433
  } catch (error) {
3431
- console.log(`${error.toString()}
3434
+ console.log(`${error.toString()}, invalid language tag: "${locale}"
3432
3435
  `);
3433
3436
  }
3434
3437
  switch (linkedLocale) {
@@ -3465,9 +3468,9 @@ function getLanguage() {
3465
3468
  var fs4 = __toESM(require("fs"), 1);
3466
3469
  var path4 = __toESM(require("path"), 1);
3467
3470
 
3468
- // node_modules/.pnpm/@vue+create-eslint-config@0.6.1/node_modules/@vue/create-eslint-config/renderEjsFile.js
3471
+ // node_modules/.pnpm/@vue+create-eslint-config@0.7.2/node_modules/@vue/create-eslint-config/renderEjsFile.js
3469
3472
  var import_ejs = __toESM(require_ejs(), 1);
3470
- var templates = { "./templates/_editorconfig.ejs": "[*.{js,jsx,mjs,cjs,ts,tsx,mts,cts,vue}]\ncharset = utf-8\nindent_size = 2\nindent_style = space\ninsert_final_newline = true\ntrim_trailing_whitespace = true\n<%_ if (styleGuide === 'airbnb') { _%>\n<%# // standard doesn't have an opinion on line endings\n// https://github.com/standard/standard/issues/140\n// or maximum line length\n// https://github.com/standard/standard/issues/1559\n// so we only configure them for airbnb style\n%>\nend_of_line = lf\nmax_line_length = 100\n<%_ } _%>\n", "./templates/_prettierrc.json.ejs": `<%_ if (styleGuide === 'airbnb') { _%>
3473
+ var templates = { "./templates/_editorconfig.ejs": "[*.{js,jsx,mjs,cjs,ts,tsx,mts,cts,vue}]\ncharset = utf-8\nindent_size = 2\nindent_style = space\ninsert_final_newline = true\ntrim_trailing_whitespace = true\n<%_ if (styleGuide !== 'standard' || needsPrettier) { _%>\n<%#\n// standard doesn't have an opinion on line endings\n// https://github.com/standard/standard/issues/140\n// or maximum line length\n// https://github.com/standard/standard/issues/1559\n// Prettier enforces these things, though.\n%>\nend_of_line = lf\nmax_line_length = 100\n<%_ } _%>\n", "./templates/_gitattributes": "* text=auto eol=lf\n", "./templates/_prettierrc.json.ejs": `<%_ if (styleGuide === 'airbnb') { _%>
3471
3474
  {
3472
3475
  "$schema": "https://json.schemastore.org/prettierrc",
3473
3476
  "printWidth": 100,
@@ -3493,15 +3496,15 @@ var templates = { "./templates/_editorconfig.ejs": "[*.{js,jsx,mjs,cjs,ts,tsx,mt
3493
3496
  "printWidth": 100
3494
3497
  }
3495
3498
  <%_ } _%>
3496
- `, "./templates/eslint.config.js.ejs": "<%_ for (const { importer } of configsBeforeVuePlugin) { _%>\n<%- importer %>\n<%_ } _%>\nimport pluginVue from 'eslint-plugin-vue'\n<%_ for (const { importer } of configsAfterVuePlugin) { _%>\n<%- importer %>\n<%_ } _%>\n\nexport default [\n {\n name: 'app/files-to-lint',\n files: ['**/*.{<%= fileExtensions.join(',') %>}'],\n },\n\n {\n name: 'app/files-to-ignore',\n ignores: ['**/dist/**', '**/dist-ssr/**', '**/coverage/**'],\n },\n\n <%_ for (const { content } of configsBeforeVuePlugin) { _%>\n <%- content %><%# TODO: auto-indent if content's multi-line %>\n <%_ } _%>\n ...pluginVue.configs['flat/essential'],\n <%_ for (const { content } of configsAfterVuePlugin) { _%>\n <%- content %><%# TODO: auto-indent if content's multi-line %>\n <%_ } _%>\n]\n" };
3499
+ `, "./templates/eslint.config.js.ejs": "<%_ for (const { importer } of configsBeforeVuePlugin) { _%>\n<%- importer %>\n<%_ } _%>\nimport js from '@eslint/js'\nimport pluginVue from 'eslint-plugin-vue'\n<%_ for (const { importer } of configsAfterVuePlugin) { _%>\n<%- importer %>\n<%_ } _%>\n\nexport default [\n {\n name: 'app/files-to-lint',\n files: ['**/*.{<%= fileExtensions.join(',') %>}'],\n },\n\n {\n name: 'app/files-to-ignore',\n ignores: ['**/dist/**', '**/dist-ssr/**', '**/coverage/**'],\n },\n\n<%_ for (const { content } of configsBeforeVuePlugin) { _%>\n <%- content %><%# TODO: auto-indent if content's multi-line %>\n<%_ } _%>\n js.configs.recommended,\n ...pluginVue.configs['flat/essential'],\n<%_ for (const { content } of configsAfterVuePlugin) { _%>\n <%- content %><%# TODO: auto-indent if content's multi-line %>\n<%_ } _%>\n]\n", "./templates/eslint.config.ts.ejs": "<%_ for (const { importer } of configsBeforeVuePlugin) { _%>\n<%- importer %>\n<%_ } _%>\nimport pluginVue from 'eslint-plugin-vue'\nimport { defineConfigWithVueTs, vueTsConfigs } from '@vue/eslint-config-typescript'\n<%_ for (const { importer } of configsAfterVuePlugin) { _%>\n<%- importer %>\n<%_ } _%>\n\n// To allow more languages other than `ts` in `.vue` files, uncomment the following lines:\n// import { configureVueProject } from '@vue/eslint-config-typescript'\n// configureVueProject({ scriptLangs: ['ts', 'tsx'] })\n// More info at https://github.com/vuejs/eslint-config-typescript/#advanced-setup\n\nexport default defineConfigWithVueTs(\n {\n name: 'app/files-to-lint',\n files: ['**/*.{<%= fileExtensions.join(',') %>}'],\n },\n\n {\n name: 'app/files-to-ignore',\n ignores: ['**/dist/**', '**/dist-ssr/**', '**/coverage/**'],\n },\n\n<%_ for (const { content } of configsBeforeVuePlugin) { _%>\n <%- content %><%# TODO: auto-indent if content's multi-line %>\n<%_ } _%>\n pluginVue.configs['flat/essential'],\n vueTsConfigs.recommended,\n<%_ for (const { content } of configsAfterVuePlugin) { _%>\n <%- content %><%# TODO: auto-indent if content's multi-line %>\n<%_ } _%>\n)\n" };
3497
3500
  function renderEjsFile(filePath, data) {
3498
3501
  return import_ejs.default.render(templates[filePath], data, {});
3499
3502
  }
3500
3503
 
3501
- // node_modules/.pnpm/@vue+create-eslint-config@0.6.1/node_modules/@vue/create-eslint-config/package.json
3504
+ // node_modules/.pnpm/@vue+create-eslint-config@0.7.2/node_modules/@vue/create-eslint-config/package.json
3502
3505
  var package_default = {
3503
3506
  name: "@vue/create-eslint-config",
3504
- version: "0.6.1",
3507
+ version: "0.7.2",
3505
3508
  description: "Utility to setup ESLint in Vue.js projects.",
3506
3509
  type: "module",
3507
3510
  main: "index.js",
@@ -3511,6 +3514,10 @@ var package_default = {
3511
3514
  engines: {
3512
3515
  node: "^16.14.0 || >= 18.0.0"
3513
3516
  },
3517
+ scripts: {
3518
+ test: 'echo "Error: no test specified" && exit 1',
3519
+ lint: "eslint --fix ."
3520
+ },
3514
3521
  repository: {
3515
3522
  type: "git",
3516
3523
  url: "git+https://github.com/vuejs/create-eslint-config.git"
@@ -3527,7 +3534,8 @@ var package_default = {
3527
3534
  },
3528
3535
  homepage: "https://github.com/vuejs/create-eslint-config#readme",
3529
3536
  publishConfig: {
3530
- access: "public"
3537
+ access: "public",
3538
+ provenance: true
3531
3539
  },
3532
3540
  dependencies: {
3533
3541
  ejs: "^3.1.10",
@@ -3535,25 +3543,22 @@ var package_default = {
3535
3543
  kolorist: "^1.8.0"
3536
3544
  },
3537
3545
  devDependencies: {
3538
- "@eslint/js": "^9.14.0",
3539
- "@types/node": "^22.8.7",
3546
+ "@eslint/js": "^9.18.0",
3547
+ "@types/node": "^22.10.6",
3540
3548
  "@vue/eslint-config-prettier": "^10.1.0",
3541
- "@vue/eslint-config-typescript": "^14.1.3",
3542
- eslint: "^9.14.0",
3543
- "eslint-plugin-oxlint": "^0.11.0",
3544
- "eslint-plugin-vue": "^9.30.0",
3545
- "npm-run-all2": "^7.0.1",
3546
- oxlint: "^0.11.0",
3547
- prettier: "^3.3.3",
3548
- typescript: "~5.6.0"
3549
- },
3550
- scripts: {
3551
- test: 'echo "Error: no test specified" && exit 1',
3552
- lint: "eslint --fix ."
3549
+ "@vue/eslint-config-typescript": "^14.3.0",
3550
+ eslint: "^9.18.0",
3551
+ "eslint-plugin-oxlint": "^0.15.6",
3552
+ "eslint-plugin-vue": "^9.32.0",
3553
+ jiti: "^2.4.2",
3554
+ "npm-run-all2": "^7.0.2",
3555
+ oxlint: "^0.15.6",
3556
+ prettier: "^3.4.2",
3557
+ typescript: "~5.7.0"
3553
3558
  }
3554
3559
  };
3555
3560
 
3556
- // node_modules/.pnpm/@vue+create-eslint-config@0.6.1/node_modules/@vue/create-eslint-config/index.js
3561
+ // node_modules/.pnpm/@vue+create-eslint-config@0.7.2/node_modules/@vue/create-eslint-config/index.js
3557
3562
  var versionMap = package_default.devDependencies;
3558
3563
  function createConfig({
3559
3564
  styleGuide = "default",
@@ -3572,25 +3577,12 @@ function createConfig({
3572
3577
  if (hasTypeScript) {
3573
3578
  fileExtensions.unshift("ts", "mts", "tsx");
3574
3579
  additionalConfigs.unshift({
3575
- devDependencies: pickDependencies(["@vue/eslint-config-typescript"]),
3576
- afterVuePlugin: [
3577
- {
3578
- importer: "import vueTsEslintConfig from '@vue/eslint-config-typescript'",
3579
- // TODO: supportedScriptLangs
3580
- content: "...vueTsEslintConfig(),"
3581
- }
3582
- ]
3580
+ devDependencies: pickDependencies(["@vue/eslint-config-typescript", "jiti"])
3583
3581
  });
3584
3582
  } else {
3585
3583
  fileExtensions.unshift("js", "mjs", "jsx");
3586
3584
  additionalConfigs.unshift({
3587
- devDependencies: pickDependencies(["@eslint/js"]),
3588
- beforeVuePlugin: [
3589
- {
3590
- importer: "import js from '@eslint/js'",
3591
- content: "js.configs.recommended,"
3592
- }
3593
- ]
3585
+ devDependencies: pickDependencies(["@eslint/js"])
3594
3586
  });
3595
3587
  }
3596
3588
  if (needsOxlint) {
@@ -3636,26 +3628,37 @@ function createConfig({
3636
3628
  }
3637
3629
  const templateData = {
3638
3630
  styleGuide,
3631
+ needsPrettier,
3639
3632
  fileExtensions,
3640
3633
  configsBeforeVuePlugin,
3641
3634
  configsAfterVuePlugin
3642
3635
  };
3643
3636
  const files = {
3644
- "eslint.config.js": renderEjsFile(
3645
- "./templates/eslint.config.js.ejs",
3646
- templateData
3647
- ),
3648
3637
  ".editorconfig": renderEjsFile(
3649
3638
  "./templates/_editorconfig.ejs",
3650
3639
  templateData
3651
3640
  )
3652
3641
  };
3642
+ if (hasTypeScript) {
3643
+ files["eslint.config.ts"] = renderEjsFile(
3644
+ "./templates/eslint.config.ts.ejs",
3645
+ templateData
3646
+ );
3647
+ } else {
3648
+ files["eslint.config.js"] = renderEjsFile(
3649
+ "./templates/eslint.config.js.ejs",
3650
+ templateData
3651
+ );
3652
+ }
3653
3653
  if (needsPrettier) {
3654
3654
  files[".prettierrc.json"] = renderEjsFile(
3655
3655
  "./templates/_prettierrc.json.ejs",
3656
3656
  templateData
3657
3657
  );
3658
3658
  }
3659
+ if (styleGuide !== "standard" || needsPrettier) {
3660
+ files[".gitattributes"] = renderEjsFile("./templates/_gitattributes", {});
3661
+ }
3659
3662
  return {
3660
3663
  pkg,
3661
3664
  files
@@ -3689,7 +3692,7 @@ function deepMerge2(target, obj) {
3689
3692
  // template/eslint/package.json
3690
3693
  var package_default2 = {
3691
3694
  devDependencies: {
3692
- "@vitest/eslint-plugin": "1.1.20",
3695
+ "@vitest/eslint-plugin": "1.1.25",
3693
3696
  "eslint-plugin-cypress": "^4.1.0",
3694
3697
  "eslint-plugin-playwright": "^2.1.0"
3695
3698
  }
@@ -3707,6 +3710,7 @@ function renderEslint(rootDir, {
3707
3710
  needsPlaywright
3708
3711
  }) {
3709
3712
  const additionalConfigs = getAdditionalConfigs({
3713
+ needsTypeScript,
3710
3714
  needsVitest,
3711
3715
  needsCypress,
3712
3716
  needsCypressCT,
@@ -3731,6 +3735,7 @@ function renderEslint(rootDir, {
3731
3735
  }
3732
3736
  }
3733
3737
  function getAdditionalConfigs({
3738
+ needsTypeScript,
3734
3739
  needsVitest,
3735
3740
  needsCypress,
3736
3741
  needsCypressCT,
@@ -3761,13 +3766,15 @@ function getAdditionalConfigs({
3761
3766
  },
3762
3767
  afterVuePlugin: [
3763
3768
  {
3764
- importer: "import pluginCypress from 'eslint-plugin-cypress/flat'",
3769
+ importer: (needsTypeScript ? `// eslint-disable-next-line @typescript-eslint/ban-ts-comment
3770
+ // @ts-ignore
3771
+ ` : "") + "import pluginCypress from 'eslint-plugin-cypress/flat'",
3765
3772
  content: `
3766
3773
  {
3767
3774
  ...pluginCypress.configs.recommended,
3768
3775
  files: [
3769
3776
  ${[
3770
- ...needsCypressCT ? ["'**/__tests__/*.{cy,spec}.{js,ts,jsx,tsx}',"] : [],
3777
+ ...needsCypressCT ? ["**/__tests__/*.{cy,spec}.{js,ts,jsx,tsx}"] : [],
3771
3778
  "cypress/e2e/**/*.{cy,spec}.{js,ts,jsx,tsx}",
3772
3779
  "cypress/support/**/*.{js,ts,jsx,tsx}"
3773
3780
  ].map(JSON.stringify.bind(JSON)).join(",\n ").replace(
@@ -3808,8 +3815,7 @@ function replaceContent(filepath, replacer) {
3808
3815
  const content = fs5.readFileSync(filepath, "utf8");
3809
3816
  fs5.writeFileSync(filepath, replacer(content));
3810
3817
  }
3811
- function trimBoilerplate(rootDir, features) {
3812
- const isTs = features.needsTypeScript;
3818
+ function trimBoilerplate(rootDir) {
3813
3819
  const srcDir = path5.resolve(rootDir, "src");
3814
3820
  for (const filename of fs5.readdirSync(srcDir)) {
3815
3821
  if (["main.js", "main.ts", "router", "stores"].includes(filename)) {
@@ -3818,25 +3824,38 @@ function trimBoilerplate(rootDir, features) {
3818
3824
  const fullpath = path5.resolve(srcDir, filename);
3819
3825
  fs5.rmSync(fullpath, { recursive: true });
3820
3826
  }
3821
- const entryPath = path5.resolve(rootDir, isTs ? "src/main.ts" : "src/main.js");
3827
+ }
3828
+ function removeCSSImport(rootDir, needsTypeScript, needsCypressCT) {
3829
+ const entryPath = path5.resolve(rootDir, needsTypeScript ? "src/main.ts" : "src/main.js");
3822
3830
  replaceContent(entryPath, (content) => content.replace("import './assets/main.css'\n\n", ""));
3823
- if (features.needsRouter) {
3824
- const routerEntry = path5.resolve(srcDir, isTs ? "router/index.ts" : "router/index.js");
3831
+ if (needsCypressCT) {
3832
+ const ctSetupPath = path5.resolve(
3833
+ rootDir,
3834
+ needsTypeScript ? "cypress/support/component.ts" : "cypress/support/component.js"
3835
+ );
3825
3836
  replaceContent(
3826
- routerEntry,
3827
- (content) => content.replace(`import HomeView from '../views/HomeView.vue'
3828
- `, "").replace(/routes:\s*\[[\s\S]*?\],/, "routes: [],")
3837
+ ctSetupPath,
3838
+ (content) => content.replace("import '@/assets/main.css'", "// import '@/assets/main.css'")
3829
3839
  );
3830
3840
  }
3831
3841
  }
3842
+ function emptyRouterConfig(rootDir, needsTypeScript) {
3843
+ const srcDir = path5.resolve(rootDir, "src");
3844
+ const routerEntry = path5.resolve(srcDir, needsTypeScript ? "router/index.ts" : "router/index.js");
3845
+ replaceContent(
3846
+ routerEntry,
3847
+ (content) => content.replace(`import HomeView from '../views/HomeView.vue'
3848
+ `, "").replace(/routes:\s*\[[\s\S]*?\],/, "routes: [],")
3849
+ );
3850
+ }
3832
3851
 
3833
3852
  // package.json
3834
3853
  var package_default3 = {
3835
3854
  name: "create-vue",
3836
- version: "3.13.0",
3855
+ version: "3.14.0",
3837
3856
  description: "\u{1F6E0}\uFE0F The recommended way to start a Vite-powered Vue project",
3838
3857
  type: "module",
3839
- packageManager: "pnpm@9.15.1",
3858
+ packageManager: "pnpm@9.15.4",
3840
3859
  bin: {
3841
3860
  "create-vue": "outfile.cjs"
3842
3861
  },
@@ -3873,20 +3892,20 @@ var package_default3 = {
3873
3892
  devDependencies: {
3874
3893
  "@tsconfig/node22": "^22.0.0",
3875
3894
  "@types/eslint": "^9.6.1",
3876
- "@types/node": "^22.10.2",
3895
+ "@types/node": "^22.10.7",
3877
3896
  "@types/prompts": "^2.4.9",
3878
- "@vue/create-eslint-config": "^0.6.1",
3897
+ "@vue/create-eslint-config": "^0.7.2",
3879
3898
  "@vue/tsconfig": "^0.7.0",
3880
3899
  ejs: "^3.1.10",
3881
3900
  esbuild: "^0.24.2",
3882
3901
  "esbuild-plugin-license": "^1.2.3",
3883
3902
  husky: "^9.1.7",
3884
3903
  kleur: "^4.1.5",
3885
- "lint-staged": "^15.2.11",
3904
+ "lint-staged": "^15.4.1",
3886
3905
  prettier: "^3.4.2",
3887
3906
  prompts: "^2.4.2",
3888
- vitest: "^2.1.8",
3889
- zx: "^8.2.4"
3907
+ vitest: "^3.0.2",
3908
+ zx: "^8.3.0"
3890
3909
  },
3891
3910
  "lint-staged": {
3892
3911
  "*.{js,ts,vue,json}": [
@@ -3929,7 +3948,7 @@ function emptyDir(dir) {
3929
3948
  (file) => fs6.unlinkSync(file)
3930
3949
  );
3931
3950
  }
3932
- var helpMessage = `Usage: create-vue [FEATURE_FLGAS...] [OPTIONS...] [DIRECTORY]
3951
+ var helpMessage = `Usage: create-vue [FEATURE_FLAGS...] [OPTIONS...] [DIRECTORY]
3933
3952
 
3934
3953
  Create a new Vue.js project.
3935
3954
  Start the CLI in interactive mode when no FEATURE_FLAGS is provided, or if the DIRECTORY argument is not a valid package name.
@@ -4317,6 +4336,22 @@ ${language.infos.scaffolding} ${root}...`);
4317
4336
  }
4318
4337
  }
4319
4338
  );
4339
+ if (argv.bare) {
4340
+ trimBoilerplate(root);
4341
+ render("bare/base");
4342
+ if (needsTypeScript) {
4343
+ render("bare/typescript");
4344
+ }
4345
+ if (needsVitest) {
4346
+ render("bare/vitest");
4347
+ }
4348
+ if (needsCypressCT) {
4349
+ render("bare/cypress-ct");
4350
+ }
4351
+ if (needsNightwatchCT) {
4352
+ render("bare/nightwatch-ct");
4353
+ }
4354
+ }
4320
4355
  if (needsTypeScript) {
4321
4356
  preOrderDirectoryTraverse(
4322
4357
  root,
@@ -4351,19 +4386,9 @@ ${language.infos.scaffolding} ${root}...`);
4351
4386
  );
4352
4387
  }
4353
4388
  if (argv.bare) {
4354
- trimBoilerplate(root, { needsTypeScript, needsRouter });
4355
- render("bare/base");
4356
- if (needsTypeScript) {
4357
- render("bare/typescript");
4358
- }
4359
- if (needsVitest) {
4360
- render("bare/vitest");
4361
- }
4362
- if (needsCypressCT) {
4363
- render("bare/cypress-ct");
4364
- }
4365
- if (needsNightwatchCT) {
4366
- render("bare/nightwatch-ct");
4389
+ removeCSSImport(root, needsTypeScript, needsCypressCT);
4390
+ if (needsRouter) {
4391
+ emptyRouterConfig(root, needsTypeScript);
4367
4392
  }
4368
4393
  }
4369
4394
  const userAgent = process.env.npm_config_user_agent ?? "";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-vue",
3
- "version": "3.13.0",
3
+ "version": "3.14.0",
4
4
  "description": "🛠️ The recommended way to start a Vite-powered Vue project",
5
5
  "type": "module",
6
6
  "bin": {
@@ -28,20 +28,20 @@
28
28
  "devDependencies": {
29
29
  "@tsconfig/node22": "^22.0.0",
30
30
  "@types/eslint": "^9.6.1",
31
- "@types/node": "^22.10.2",
31
+ "@types/node": "^22.10.7",
32
32
  "@types/prompts": "^2.4.9",
33
- "@vue/create-eslint-config": "^0.6.1",
33
+ "@vue/create-eslint-config": "^0.7.2",
34
34
  "@vue/tsconfig": "^0.7.0",
35
35
  "ejs": "^3.1.10",
36
36
  "esbuild": "^0.24.2",
37
37
  "esbuild-plugin-license": "^1.2.3",
38
38
  "husky": "^9.1.7",
39
39
  "kleur": "^4.1.5",
40
- "lint-staged": "^15.2.11",
40
+ "lint-staged": "^15.4.1",
41
41
  "prettier": "^3.4.2",
42
42
  "prompts": "^2.4.2",
43
- "vitest": "^2.1.8",
44
- "zx": "^8.2.4"
43
+ "vitest": "^3.0.2",
44
+ "zx": "^8.3.0"
45
45
  },
46
46
  "lint-staged": {
47
47
  "*.{js,ts,vue,json}": [
@@ -6,9 +6,9 @@ case `uname` in
6
6
  esac
7
7
 
8
8
  if [ -z "$NODE_PATH" ]; then
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"
9
+ export NODE_PATH="/home/runner/work/create-vue/create-vue/node_modules/.pnpm/vite@6.0.11_@types+node@22.10.7_yaml@2.6.1/node_modules/vite/bin/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/vite@6.0.11_@types+node@22.10.7_yaml@2.6.1/node_modules/vite/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/vite@6.0.11_@types+node@22.10.7_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="/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"
11
+ export NODE_PATH="/home/runner/work/create-vue/create-vue/node_modules/.pnpm/vite@6.0.11_@types+node@22.10.7_yaml@2.6.1/node_modules/vite/bin/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/vite@6.0.11_@types+node@22.10.7_yaml@2.6.1/node_modules/vite/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/vite@6.0.11_@types+node@22.10.7_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" "$@"
@@ -11,7 +11,7 @@
11
11
  },
12
12
  "devDependencies": {
13
13
  "@vitejs/plugin-vue": "^5.2.1",
14
- "vite": "^6.0.5",
15
- "vite-plugin-vue-devtools": "^7.6.8"
14
+ "vite": "^6.0.11",
15
+ "vite-plugin-vue-devtools": "^7.7.0"
16
16
  }
17
17
  }
@@ -11,7 +11,7 @@ export default function getData() {
11
11
  id: 'vite-plugin-vue-devtools',
12
12
  importer: "import vueDevTools from 'vite-plugin-vue-devtools'",
13
13
  initializer: 'vueDevTools()',
14
- }
14
+ },
15
15
  ],
16
16
  }
17
17
  }
@@ -4,5 +4,6 @@
4
4
  "lib": ["es5", "dom"],
5
5
  "types": ["cypress"]
6
6
  },
7
- "include": ["./**/*", "../support/**/*"]
7
+ "include": ["./e2e/**/*", "./support/**/*"],
8
+ "exclude": ["./support/component.*"]
8
9
  }
@@ -6,9 +6,9 @@ case `uname` in
6
6
  esac
7
7
 
8
8
  if [ -z "$NODE_PATH" ]; then
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"
9
+ export NODE_PATH="/home/runner/work/create-vue/create-vue/node_modules/.pnpm/cypress@14.0.0/node_modules/cypress/bin/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/cypress@14.0.0/node_modules/cypress/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/cypress@14.0.0/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/node_modules"
10
10
  else
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"
11
+ export NODE_PATH="/home/runner/work/create-vue/create-vue/node_modules/.pnpm/cypress@14.0.0/node_modules/cypress/bin/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/cypress@14.0.0/node_modules/cypress/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/cypress@14.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/../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="/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"
9
+ export NODE_PATH="/home/runner/work/create-vue/create-vue/node_modules/.pnpm/start-server-and-test@2.0.10/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.10/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.10/node_modules/start-server-and-test/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/start-server-and-test@2.0.10/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/node_modules"
10
10
  else
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"
11
+ export NODE_PATH="/home/runner/work/create-vue/create-vue/node_modules/.pnpm/start-server-and-test@2.0.10/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.10/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.10/node_modules/start-server-and-test/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/start-server-and-test@2.0.10/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="/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"
9
+ export NODE_PATH="/home/runner/work/create-vue/create-vue/node_modules/.pnpm/start-server-and-test@2.0.10/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.10/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.10/node_modules/start-server-and-test/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/start-server-and-test@2.0.10/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/node_modules"
10
10
  else
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"
11
+ export NODE_PATH="/home/runner/work/create-vue/create-vue/node_modules/.pnpm/start-server-and-test@2.0.10/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.10/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.10/node_modules/start-server-and-test/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/start-server-and-test@2.0.10/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="/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"
9
+ export NODE_PATH="/home/runner/work/create-vue/create-vue/node_modules/.pnpm/start-server-and-test@2.0.10/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.10/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.10/node_modules/start-server-and-test/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/start-server-and-test@2.0.10/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/node_modules"
10
10
  else
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"
11
+ export NODE_PATH="/home/runner/work/create-vue/create-vue/node_modules/.pnpm/start-server-and-test@2.0.10/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.10/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.10/node_modules/start-server-and-test/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/start-server-and-test@2.0.10/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.17.0",
8
- "start-server-and-test": "^2.0.9"
7
+ "cypress": "^14.0.0",
8
+ "start-server-and-test": "^2.0.10"
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="/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"
9
+ export NODE_PATH="/home/runner/work/create-vue/create-vue/node_modules/.pnpm/cypress@14.0.0/node_modules/cypress/bin/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/cypress@14.0.0/node_modules/cypress/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/cypress@14.0.0/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/node_modules"
10
10
  else
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"
11
+ export NODE_PATH="/home/runner/work/create-vue/create-vue/node_modules/.pnpm/cypress@14.0.0/node_modules/cypress/bin/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/cypress@14.0.0/node_modules/cypress/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/cypress@14.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/../cypress/bin/cypress" "$@"
@@ -7,6 +7,6 @@
7
7
  "vue": "^3.5.13"
8
8
  },
9
9
  "devDependencies": {
10
- "cypress": "^13.17.0"
10
+ "cypress": "^14.0.0"
11
11
  }
12
12
  }
@@ -6,9 +6,9 @@ case `uname` in
6
6
  esac
7
7
 
8
8
  if [ -z "$NODE_PATH" ]; then
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"
9
+ export NODE_PATH="/home/runner/work/create-vue/create-vue/node_modules/.pnpm/vite@6.0.11_@types+node@22.10.7_yaml@2.6.1/node_modules/vite/bin/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/vite@6.0.11_@types+node@22.10.7_yaml@2.6.1/node_modules/vite/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/vite@6.0.11_@types+node@22.10.7_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="/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"
11
+ export NODE_PATH="/home/runner/work/create-vue/create-vue/node_modules/.pnpm/vite@6.0.11_@types+node@22.10.7_yaml@2.6.1/node_modules/vite/bin/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/vite@6.0.11_@types+node@22.10.7_yaml@2.6.1/node_modules/vite/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/vite@6.0.11_@types+node@22.10.7_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" "$@"
@@ -4,6 +4,6 @@
4
4
  },
5
5
  "devDependencies": {
6
6
  "@vitejs/plugin-vue-jsx": "^4.1.1",
7
- "vite": "^6.0.5"
7
+ "vite": "^6.0.11"
8
8
  }
9
9
  }
@@ -6,9 +6,9 @@ case `uname` in
6
6
  esac
7
7
 
8
8
  if [ -z "$NODE_PATH" ]; then
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"
9
+ export NODE_PATH="/home/runner/work/create-vue/create-vue/node_modules/.pnpm/chromedriver@132.0.0/node_modules/chromedriver/bin/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/chromedriver@132.0.0/node_modules/chromedriver/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/chromedriver@132.0.0/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/node_modules"
10
10
  else
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"
11
+ export NODE_PATH="/home/runner/work/create-vue/create-vue/node_modules/.pnpm/chromedriver@132.0.0/node_modules/chromedriver/bin/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/chromedriver@132.0.0/node_modules/chromedriver/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/chromedriver@132.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/../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="/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"
9
+ export NODE_PATH="/home/runner/work/create-vue/create-vue/node_modules/.pnpm/nightwatch@3.11.0_chromedriver@132.0.0_geckodriver@5.0.0/node_modules/nightwatch/bin/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/nightwatch@3.11.0_chromedriver@132.0.0_geckodriver@5.0.0/node_modules/nightwatch/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/nightwatch@3.11.0_chromedriver@132.0.0_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="/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"
11
+ export NODE_PATH="/home/runner/work/create-vue/create-vue/node_modules/.pnpm/nightwatch@3.11.0_chromedriver@132.0.0_geckodriver@5.0.0/node_modules/nightwatch/bin/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/nightwatch@3.11.0_chromedriver@132.0.0_geckodriver@5.0.0/node_modules/nightwatch/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/nightwatch@3.11.0_chromedriver@132.0.0_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="/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"
9
+ export NODE_PATH="/home/runner/work/create-vue/create-vue/node_modules/.pnpm/ts-node@10.9.2_@types+node@22.10.7_typescript@5.7.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.7_typescript@5.7.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.7_typescript@5.7.3/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/node_modules"
10
10
  else
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"
11
+ export NODE_PATH="/home/runner/work/create-vue/create-vue/node_modules/.pnpm/ts-node@10.9.2_@types+node@22.10.7_typescript@5.7.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.7_typescript@5.7.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.7_typescript@5.7.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="/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"
9
+ export NODE_PATH="/home/runner/work/create-vue/create-vue/node_modules/.pnpm/ts-node@10.9.2_@types+node@22.10.7_typescript@5.7.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.7_typescript@5.7.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.7_typescript@5.7.3/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/node_modules"
10
10
  else
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"
11
+ export NODE_PATH="/home/runner/work/create-vue/create-vue/node_modules/.pnpm/ts-node@10.9.2_@types+node@22.10.7_typescript@5.7.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.7_typescript@5.7.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.7_typescript@5.7.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="/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"
9
+ export NODE_PATH="/home/runner/work/create-vue/create-vue/node_modules/.pnpm/ts-node@10.9.2_@types+node@22.10.7_typescript@5.7.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.7_typescript@5.7.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.7_typescript@5.7.3/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/node_modules"
10
10
  else
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"
11
+ export NODE_PATH="/home/runner/work/create-vue/create-vue/node_modules/.pnpm/ts-node@10.9.2_@types+node@22.10.7_typescript@5.7.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.7_typescript@5.7.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.7_typescript@5.7.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="/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"
9
+ export NODE_PATH="/home/runner/work/create-vue/create-vue/node_modules/.pnpm/ts-node@10.9.2_@types+node@22.10.7_typescript@5.7.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.7_typescript@5.7.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.7_typescript@5.7.3/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/node_modules"
10
10
  else
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"
11
+ export NODE_PATH="/home/runner/work/create-vue/create-vue/node_modules/.pnpm/ts-node@10.9.2_@types+node@22.10.7_typescript@5.7.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.7_typescript@5.7.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.7_typescript@5.7.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="/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"
9
+ export NODE_PATH="/home/runner/work/create-vue/create-vue/node_modules/.pnpm/ts-node@10.9.2_@types+node@22.10.7_typescript@5.7.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.7_typescript@5.7.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.7_typescript@5.7.3/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/node_modules"
10
10
  else
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"
11
+ export NODE_PATH="/home/runner/work/create-vue/create-vue/node_modules/.pnpm/ts-node@10.9.2_@types+node@22.10.7_typescript@5.7.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.7_typescript@5.7.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.7_typescript@5.7.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="/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"
9
+ export NODE_PATH="/home/runner/work/create-vue/create-vue/node_modules/.pnpm/ts-node@10.9.2_@types+node@22.10.7_typescript@5.7.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.7_typescript@5.7.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.7_typescript@5.7.3/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/node_modules"
10
10
  else
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"
11
+ export NODE_PATH="/home/runner/work/create-vue/create-vue/node_modules/.pnpm/ts-node@10.9.2_@types+node@22.10.7_typescript@5.7.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.7_typescript@5.7.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.7_typescript@5.7.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="/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"
9
+ export NODE_PATH="/home/runner/work/create-vue/create-vue/node_modules/.pnpm/vite@6.0.11_@types+node@22.10.7_yaml@2.6.1/node_modules/vite/bin/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/vite@6.0.11_@types+node@22.10.7_yaml@2.6.1/node_modules/vite/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/vite@6.0.11_@types+node@22.10.7_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="/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"
11
+ export NODE_PATH="/home/runner/work/create-vue/create-vue/node_modules/.pnpm/vite@6.0.11_@types+node@22.10.7_yaml@2.6.1/node_modules/vite/bin/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/vite@6.0.11_@types+node@22.10.7_yaml@2.6.1/node_modules/vite/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/vite@6.0.11_@types+node@22.10.7_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" "$@"
@@ -5,11 +5,11 @@
5
5
  "devDependencies": {
6
6
  "@nightwatch/vue": "^3.1.2",
7
7
  "@vitejs/plugin-vue": "^5.2.1",
8
- "chromedriver": "^131.0.4",
8
+ "chromedriver": "^132.0.0",
9
9
  "geckodriver": "^5.0.0",
10
- "nightwatch": "^3.9.0",
10
+ "nightwatch": "^3.11.0",
11
11
  "ts-node": "^10.9.2",
12
- "vite": "^6.0.5",
12
+ "vite": "^6.0.11",
13
13
  "vite-plugin-nightwatch": "^0.4.6"
14
14
  }
15
15
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "dependencies": {
3
- "pinia": "^2.3.0",
3
+ "pinia": "^2.3.1",
4
4
  "vue": "^3.5.13"
5
5
  }
6
6
  }
@@ -6,9 +6,9 @@ case `uname` in
6
6
  esac
7
7
 
8
8
  if [ -z "$NODE_PATH" ]; then
9
- export NODE_PATH="/home/runner/work/create-vue/create-vue/node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/bin/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/typescript@5.6.3/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/node_modules"
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
10
  else
11
- export NODE_PATH="/home/runner/work/create-vue/create-vue/node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/bin/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/typescript@5.6.3/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/node_modules:$NODE_PATH"
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
12
  fi
13
13
  if [ -x "$basedir/node" ]; then
14
14
  exec "$basedir/node" "$basedir/../typescript/bin/tsc" "$@"
@@ -6,9 +6,9 @@ case `uname` in
6
6
  esac
7
7
 
8
8
  if [ -z "$NODE_PATH" ]; then
9
- export NODE_PATH="/home/runner/work/create-vue/create-vue/node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/bin/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/typescript@5.6.3/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/node_modules"
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
10
  else
11
- export NODE_PATH="/home/runner/work/create-vue/create-vue/node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/bin/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/typescript@5.6.3/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/node_modules:$NODE_PATH"
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
12
  fi
13
13
  if [ -x "$basedir/node" ]; then
14
14
  exec "$basedir/node" "$basedir/../typescript/bin/tsserver" "$@"
@@ -6,9 +6,9 @@ case `uname` in
6
6
  esac
7
7
 
8
8
  if [ -z "$NODE_PATH" ]; then
9
- export NODE_PATH="/home/runner/work/create-vue/create-vue/node_modules/.pnpm/vue-tsc@2.1.10_typescript@5.6.3/node_modules/vue-tsc/bin/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/vue-tsc@2.1.10_typescript@5.6.3/node_modules/vue-tsc/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/vue-tsc@2.1.10_typescript@5.6.3/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/node_modules"
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
10
  else
11
- export NODE_PATH="/home/runner/work/create-vue/create-vue/node_modules/.pnpm/vue-tsc@2.1.10_typescript@5.6.3/node_modules/vue-tsc/bin/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/vue-tsc@2.1.10_typescript@5.6.3/node_modules/vue-tsc/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/vue-tsc@2.1.10_typescript@5.6.3/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/node_modules:$NODE_PATH"
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
12
  fi
13
13
  if [ -x "$basedir/node" ]; then
14
14
  exec "$basedir/node" "$basedir/../vue-tsc/bin/vue-tsc.js" "$@"
@@ -5,9 +5,9 @@
5
5
  "type-check": "vue-tsc --build"
6
6
  },
7
7
  "devDependencies": {
8
- "@types/node": "^22.10.2",
8
+ "@types/node": "^22.10.7",
9
9
  "npm-run-all2": "^7.0.2",
10
- "typescript": "~5.6.3",
11
- "vue-tsc": "^2.1.10"
10
+ "typescript": "~5.7.3",
11
+ "vue-tsc": "^2.2.0"
12
12
  }
13
13
  }
@@ -6,9 +6,9 @@ case `uname` in
6
6
  esac
7
7
 
8
8
  if [ -z "$NODE_PATH" ]; then
9
- export NODE_PATH="/home/runner/work/create-vue/create-vue/node_modules/.pnpm/vitest@2.1.8_@types+node@22.10.2_jsdom@25.0.1/node_modules/vitest/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/vitest@2.1.8_@types+node@22.10.2_jsdom@25.0.1/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/node_modules"
9
+ export NODE_PATH="/home/runner/work/create-vue/create-vue/node_modules/.pnpm/vitest@3.0.2_@types+node@22.10.7_jsdom@26.0.0_yaml@2.6.1/node_modules/vitest/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/vitest@3.0.2_@types+node@22.10.7_jsdom@26.0.0_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="/home/runner/work/create-vue/create-vue/node_modules/.pnpm/vitest@2.1.8_@types+node@22.10.2_jsdom@25.0.1/node_modules/vitest/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/vitest@2.1.8_@types+node@22.10.2_jsdom@25.0.1/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/node_modules:$NODE_PATH"
11
+ export NODE_PATH="/home/runner/work/create-vue/create-vue/node_modules/.pnpm/vitest@3.0.2_@types+node@22.10.7_jsdom@26.0.0_yaml@2.6.1/node_modules/vitest/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/vitest@3.0.2_@types+node@22.10.7_jsdom@26.0.0_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/../vitest/vitest.mjs" "$@"
@@ -7,7 +7,7 @@
7
7
  },
8
8
  "devDependencies": {
9
9
  "@vue/test-utils": "^2.4.6",
10
- "jsdom": "^25.0.1",
11
- "vitest": "^2.1.8"
10
+ "jsdom": "^26.0.0",
11
+ "vitest": "^3.0.2"
12
12
  }
13
13
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "devDependencies": {
3
- "@vitest/eslint-plugin": "1.1.20",
3
+ "@vitest/eslint-plugin": "1.1.25",
4
4
  "eslint-plugin-cypress": "^4.1.0",
5
5
  "eslint-plugin-playwright": "^2.1.0"
6
6
  }
@@ -5,7 +5,8 @@
5
5
  "vitest.config.*",
6
6
  "cypress.config.*",
7
7
  "nightwatch.conf.*",
8
- "playwright.config.*"
8
+ "playwright.config.*",
9
+ "eslint.config.*"
9
10
  ],
10
11
  "compilerOptions": {
11
12
  "noEmit": true,