create-vue 3.14.0 → 3.14.2

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 (50) hide show
  1. package/outfile.cjs +33 -27
  2. package/package.json +10 -9
  3. package/template/bare/base/src/App.vue +1 -1
  4. package/template/bare/cypress-ct/src/__tests__/App.cy.js +1 -1
  5. package/template/bare/nightwatch-ct/src/__tests__/App.spec.js +1 -1
  6. package/template/bare/typescript/src/App.vue +1 -1
  7. package/template/bare/vitest/src/__tests__/App.spec.js +1 -1
  8. package/template/base/package.json +2 -2
  9. package/template/code/default/src/components/TheWelcome.vue +1 -1
  10. package/template/code/router/src/components/TheWelcome.vue +1 -1
  11. package/template/code/typescript-default/src/components/TheWelcome.vue +1 -1
  12. package/template/code/typescript-router/src/components/TheWelcome.vue +1 -1
  13. package/template/config/cypress/package.json +2 -1
  14. package/template/config/cypress-ct/package.json +1 -1
  15. package/template/config/jsx/package.json +1 -1
  16. package/template/config/nightwatch/package.json +3 -3
  17. package/template/config/nightwatch/tests/e2e/example.js +1 -1
  18. package/template/config/pinia/package.json +1 -1
  19. package/template/config/playwright/e2e/vue.spec.js +1 -1
  20. package/template/config/playwright/e2e/vue.spec.ts +1 -1
  21. package/template/config/playwright/package.json +1 -1
  22. package/template/config/typescript/package.json +2 -2
  23. package/template/config/vitest/package.json +1 -1
  24. package/template/eslint/package.json +2 -2
  25. package/template/base/node_modules/.bin/vite +0 -17
  26. package/template/config/cypress/node_modules/.bin/cypress +0 -17
  27. package/template/config/cypress/node_modules/.bin/server-test +0 -17
  28. package/template/config/cypress/node_modules/.bin/start-server-and-test +0 -17
  29. package/template/config/cypress/node_modules/.bin/start-test +0 -17
  30. package/template/config/cypress-ct/node_modules/.bin/cypress +0 -17
  31. package/template/config/jsx/node_modules/.bin/vite +0 -17
  32. package/template/config/nightwatch/node_modules/.bin/chromedriver +0 -17
  33. package/template/config/nightwatch/node_modules/.bin/geckodriver +0 -17
  34. package/template/config/nightwatch/node_modules/.bin/nightwatch +0 -17
  35. package/template/config/nightwatch/node_modules/.bin/ts-node +0 -17
  36. package/template/config/nightwatch/node_modules/.bin/ts-node-cwd +0 -17
  37. package/template/config/nightwatch/node_modules/.bin/ts-node-esm +0 -17
  38. package/template/config/nightwatch/node_modules/.bin/ts-node-script +0 -17
  39. package/template/config/nightwatch/node_modules/.bin/ts-node-transpile-only +0 -17
  40. package/template/config/nightwatch/node_modules/.bin/ts-script +0 -17
  41. package/template/config/nightwatch/node_modules/.bin/vite +0 -17
  42. package/template/config/playwright/node_modules/.bin/playwright +0 -17
  43. package/template/config/typescript/node_modules/.bin/npm-run-all +0 -17
  44. package/template/config/typescript/node_modules/.bin/npm-run-all2 +0 -17
  45. package/template/config/typescript/node_modules/.bin/run-p +0 -17
  46. package/template/config/typescript/node_modules/.bin/run-s +0 -17
  47. package/template/config/typescript/node_modules/.bin/tsc +0 -17
  48. package/template/config/typescript/node_modules/.bin/tsserver +0 -17
  49. package/template/config/typescript/node_modules/.bin/vue-tsc +0 -17
  50. package/template/config/vitest/node_modules/.bin/vitest +0 -17
package/outfile.cjs CHANGED
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env node
2
- /*! create-vue v3.14.0 | MIT */
2
+ /*! create-vue v3.14.2 | MIT */
3
3
  var __create = Object.create;
4
4
  var __defProp = Object.defineProperty;
5
5
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
@@ -3303,8 +3303,13 @@ See [Vite Configuration Reference](https://vite.dev/config/).
3303
3303
  ## Project Setup
3304
3304
 
3305
3305
  `;
3306
+ let installCommand = commandFor("install");
3307
+ if (packageManager === "pnpm" && needsNightwatch) {
3308
+ installCommand += `
3309
+ pnpm approve-builds # for pnpm 10+`;
3310
+ }
3306
3311
  let npmScriptsDescriptions = `\`\`\`sh
3307
- ${commandFor("install")}
3312
+ ${installCommand}
3308
3313
  \`\`\`
3309
3314
 
3310
3315
  ### Compile and Hot-Reload for Development
@@ -3468,7 +3473,7 @@ function getLanguage() {
3468
3473
  var fs4 = __toESM(require("fs"), 1);
3469
3474
  var path4 = __toESM(require("path"), 1);
3470
3475
 
3471
- // node_modules/.pnpm/@vue+create-eslint-config@0.7.2/node_modules/@vue/create-eslint-config/renderEjsFile.js
3476
+ // node_modules/.pnpm/@vue+create-eslint-config@0.7.3/node_modules/@vue/create-eslint-config/renderEjsFile.js
3472
3477
  var import_ejs = __toESM(require_ejs(), 1);
3473
3478
  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') { _%>
3474
3479
  {
@@ -3501,10 +3506,10 @@ function renderEjsFile(filePath, data) {
3501
3506
  return import_ejs.default.render(templates[filePath], data, {});
3502
3507
  }
3503
3508
 
3504
- // node_modules/.pnpm/@vue+create-eslint-config@0.7.2/node_modules/@vue/create-eslint-config/package.json
3509
+ // node_modules/.pnpm/@vue+create-eslint-config@0.7.3/node_modules/@vue/create-eslint-config/package.json
3505
3510
  var package_default = {
3506
3511
  name: "@vue/create-eslint-config",
3507
- version: "0.7.2",
3512
+ version: "0.7.3",
3508
3513
  description: "Utility to setup ESLint in Vue.js projects.",
3509
3514
  type: "module",
3510
3515
  main: "index.js",
@@ -3543,22 +3548,22 @@ var package_default = {
3543
3548
  kolorist: "^1.8.0"
3544
3549
  },
3545
3550
  devDependencies: {
3546
- "@eslint/js": "^9.18.0",
3547
- "@types/node": "^22.10.6",
3548
- "@vue/eslint-config-prettier": "^10.1.0",
3549
- "@vue/eslint-config-typescript": "^14.3.0",
3550
- eslint: "^9.18.0",
3551
- "eslint-plugin-oxlint": "^0.15.6",
3551
+ "@eslint/js": "^9.20.0",
3552
+ "@types/node": "^22.13.4",
3553
+ "@vue/eslint-config-prettier": "^10.2.0",
3554
+ "@vue/eslint-config-typescript": "^14.4.0",
3555
+ eslint: "^9.20.1",
3556
+ "eslint-plugin-oxlint": "^0.15.10",
3552
3557
  "eslint-plugin-vue": "^9.32.0",
3553
3558
  jiti: "^2.4.2",
3554
3559
  "npm-run-all2": "^7.0.2",
3555
- oxlint: "^0.15.6",
3556
- prettier: "^3.4.2",
3557
- typescript: "~5.7.0"
3560
+ oxlint: "^0.15.10",
3561
+ prettier: "^3.5.1",
3562
+ typescript: "~5.7.3"
3558
3563
  }
3559
3564
  };
3560
3565
 
3561
- // node_modules/.pnpm/@vue+create-eslint-config@0.7.2/node_modules/@vue/create-eslint-config/index.js
3566
+ // node_modules/.pnpm/@vue+create-eslint-config@0.7.3/node_modules/@vue/create-eslint-config/index.js
3562
3567
  var versionMap = package_default.devDependencies;
3563
3568
  function createConfig({
3564
3569
  styleGuide = "default",
@@ -3692,9 +3697,9 @@ function deepMerge2(target, obj) {
3692
3697
  // template/eslint/package.json
3693
3698
  var package_default2 = {
3694
3699
  devDependencies: {
3695
- "@vitest/eslint-plugin": "1.1.25",
3700
+ "@vitest/eslint-plugin": "1.1.31",
3696
3701
  "eslint-plugin-cypress": "^4.1.0",
3697
- "eslint-plugin-playwright": "^2.1.0"
3702
+ "eslint-plugin-playwright": "^2.2.0"
3698
3703
  }
3699
3704
  };
3700
3705
 
@@ -3852,17 +3857,18 @@ function emptyRouterConfig(rootDir, needsTypeScript) {
3852
3857
  // package.json
3853
3858
  var package_default3 = {
3854
3859
  name: "create-vue",
3855
- version: "3.14.0",
3860
+ version: "3.14.2",
3856
3861
  description: "\u{1F6E0}\uFE0F The recommended way to start a Vite-powered Vue project",
3857
3862
  type: "module",
3858
- packageManager: "pnpm@9.15.4",
3863
+ packageManager: "pnpm@10.4.1",
3859
3864
  bin: {
3860
3865
  "create-vue": "outfile.cjs"
3861
3866
  },
3862
3867
  files: [
3863
3868
  "locales",
3864
3869
  "outfile.cjs",
3865
- "template"
3870
+ "template",
3871
+ "!template/**/node_modules/.bin/*"
3866
3872
  ],
3867
3873
  engines: {
3868
3874
  node: ">=v18.3.0"
@@ -3892,20 +3898,20 @@ var package_default3 = {
3892
3898
  devDependencies: {
3893
3899
  "@tsconfig/node22": "^22.0.0",
3894
3900
  "@types/eslint": "^9.6.1",
3895
- "@types/node": "^22.10.7",
3901
+ "@types/node": "^22.13.4",
3896
3902
  "@types/prompts": "^2.4.9",
3897
- "@vue/create-eslint-config": "^0.7.2",
3903
+ "@vue/create-eslint-config": "^0.7.3",
3898
3904
  "@vue/tsconfig": "^0.7.0",
3899
3905
  ejs: "^3.1.10",
3900
- esbuild: "^0.24.2",
3906
+ esbuild: "^0.25.0",
3901
3907
  "esbuild-plugin-license": "^1.2.3",
3902
3908
  husky: "^9.1.7",
3903
3909
  kleur: "^4.1.5",
3904
- "lint-staged": "^15.4.1",
3905
- prettier: "^3.4.2",
3910
+ "lint-staged": "^15.4.3",
3911
+ prettier: "^3.5.1",
3906
3912
  prompts: "^2.4.2",
3907
- vitest: "^3.0.2",
3908
- zx: "^8.3.0"
3913
+ vitest: "^3.0.5",
3914
+ zx: "^8.3.2"
3909
3915
  },
3910
3916
  "lint-staged": {
3911
3917
  "*.{js,ts,vue,json}": [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-vue",
3
- "version": "3.14.0",
3
+ "version": "3.14.2",
4
4
  "description": "🛠️ The recommended way to start a Vite-powered Vue project",
5
5
  "type": "module",
6
6
  "bin": {
@@ -9,7 +9,8 @@
9
9
  "files": [
10
10
  "locales",
11
11
  "outfile.cjs",
12
- "template"
12
+ "template",
13
+ "!template/**/node_modules/.bin/*"
13
14
  ],
14
15
  "engines": {
15
16
  "node": ">=v18.3.0"
@@ -28,20 +29,20 @@
28
29
  "devDependencies": {
29
30
  "@tsconfig/node22": "^22.0.0",
30
31
  "@types/eslint": "^9.6.1",
31
- "@types/node": "^22.10.7",
32
+ "@types/node": "^22.13.4",
32
33
  "@types/prompts": "^2.4.9",
33
- "@vue/create-eslint-config": "^0.7.2",
34
+ "@vue/create-eslint-config": "^0.7.3",
34
35
  "@vue/tsconfig": "^0.7.0",
35
36
  "ejs": "^3.1.10",
36
- "esbuild": "^0.24.2",
37
+ "esbuild": "^0.25.0",
37
38
  "esbuild-plugin-license": "^1.2.3",
38
39
  "husky": "^9.1.7",
39
40
  "kleur": "^4.1.5",
40
- "lint-staged": "^15.4.1",
41
- "prettier": "^3.4.2",
41
+ "lint-staged": "^15.4.3",
42
+ "prettier": "^3.5.1",
42
43
  "prompts": "^2.4.2",
43
- "vitest": "^3.0.2",
44
- "zx": "^8.3.0"
44
+ "vitest": "^3.0.5",
45
+ "zx": "^8.3.2"
45
46
  },
46
47
  "lint-staged": {
47
48
  "*.{js,ts,vue,json}": [
@@ -1,7 +1,7 @@
1
1
  <script setup></script>
2
2
 
3
3
  <template>
4
- <h1>Hello World</h1>
4
+ <h1>You did it!</h1>
5
5
  </template>
6
6
 
7
7
  <style scoped></style>
@@ -3,6 +3,6 @@ import App from '../App.vue'
3
3
  describe('App', () => {
4
4
  it('mounts and renders properly', () => {
5
5
  cy.mount(App)
6
- cy.get('h1').should('contain', 'Hello World')
6
+ cy.get('h1').should('contain', 'You did it!')
7
7
  })
8
8
  })
@@ -7,7 +7,7 @@ describe('App', function () {
7
7
  const appComponent = await browser.mountComponent('/src/App.vue');
8
8
 
9
9
  browser.expect.element(appComponent).to.be.present;
10
- browser.expect.element('h1').text.to.contain('Hello World');
10
+ browser.expect.element('h1').text.to.contain('You did it!');
11
11
  })
12
12
 
13
13
  after((browser) => browser.end())
@@ -1,7 +1,7 @@
1
1
  <script setup lang="ts"></script>
2
2
 
3
3
  <template>
4
- <h1>Hello World</h1>
4
+ <h1>You did it!</h1>
5
5
  </template>
6
6
 
7
7
  <style scoped></style>
@@ -6,6 +6,6 @@ import App from '../App.vue'
6
6
  describe('App', () => {
7
7
  it('mounts renders properly', () => {
8
8
  const wrapper = mount(App)
9
- expect(wrapper.text()).toContain('Hello World')
9
+ expect(wrapper.text()).toContain('You did it!')
10
10
  })
11
11
  })
@@ -11,7 +11,7 @@
11
11
  },
12
12
  "devDependencies": {
13
13
  "@vitejs/plugin-vue": "^5.2.1",
14
- "vite": "^6.0.11",
15
- "vite-plugin-vue-devtools": "^7.7.0"
14
+ "vite": "^6.1.0",
15
+ "vite-plugin-vue-devtools": "^7.7.2"
16
16
  }
17
17
  }
@@ -34,7 +34,7 @@ const openReadmeInEditor = () => fetch('/__open-in-editor?file=README.md')
34
34
  +
35
35
  <a href="https://github.com/johnsoncodehk/volar" target="_blank" rel="noopener">Volar</a>. If
36
36
  you need to test your components and web pages, check out
37
- <a href="https://vitest.dev/" target="_blank" rel="noopener">Vite</a>
37
+ <a href="https://vitest.dev/" target="_blank" rel="noopener">Vitest</a>
38
38
  and
39
39
  <a href="https://www.cypress.io/" target="_blank" rel="noopener">Cypress</a>
40
40
  /
@@ -34,7 +34,7 @@ const openReadmeInEditor = () => fetch('/__open-in-editor?file=README.md')
34
34
  +
35
35
  <a href="https://github.com/johnsoncodehk/volar" target="_blank" rel="noopener">Volar</a>. If
36
36
  you need to test your components and web pages, check out
37
- <a href="https://vitest.dev/" target="_blank" rel="noopener">Vite</a>
37
+ <a href="https://vitest.dev/" target="_blank" rel="noopener">Vitest</a>
38
38
  and
39
39
  <a href="https://www.cypress.io/" target="_blank" rel="noopener">Cypress</a>
40
40
  /
@@ -34,7 +34,7 @@ const openReadmeInEditor = () => fetch('/__open-in-editor?file=README.md')
34
34
  +
35
35
  <a href="https://github.com/johnsoncodehk/volar" target="_blank" rel="noopener">Volar</a>. If
36
36
  you need to test your components and web pages, check out
37
- <a href="https://vitest.dev/" target="_blank" rel="noopener">Vite</a>
37
+ <a href="https://vitest.dev/" target="_blank" rel="noopener">Vitest</a>
38
38
  and
39
39
  <a href="https://www.cypress.io/" target="_blank" rel="noopener">Cypress</a>
40
40
  /
@@ -34,7 +34,7 @@ const openReadmeInEditor = () => fetch('/__open-in-editor?file=README.md')
34
34
  +
35
35
  <a href="https://github.com/johnsoncodehk/volar" target="_blank" rel="noopener">Volar</a>. If
36
36
  you need to test your components and web pages, check out
37
- <a href="https://vitest.dev/" target="_blank" rel="noopener">Vite</a>
37
+ <a href="https://vitest.dev/" target="_blank" rel="noopener">Vitest</a>
38
38
  and
39
39
  <a href="https://www.cypress.io/" target="_blank" rel="noopener">Cypress</a>
40
40
  /
@@ -1,10 +1,11 @@
1
1
  {
2
2
  "scripts": {
3
+ "prepare": "cypress install",
3
4
  "test:e2e": "start-server-and-test preview http://localhost:4173 'cypress run --e2e'",
4
5
  "test:e2e:dev": "start-server-and-test 'vite dev --port 4173' http://localhost:4173 'cypress open --e2e'"
5
6
  },
6
7
  "devDependencies": {
7
- "cypress": "^14.0.0",
8
+ "cypress": "^14.0.3",
8
9
  "start-server-and-test": "^2.0.10"
9
10
  }
10
11
  }
@@ -7,6 +7,6 @@
7
7
  "vue": "^3.5.13"
8
8
  },
9
9
  "devDependencies": {
10
- "cypress": "^14.0.0"
10
+ "cypress": "^14.0.3"
11
11
  }
12
12
  }
@@ -4,6 +4,6 @@
4
4
  },
5
5
  "devDependencies": {
6
6
  "@vitejs/plugin-vue-jsx": "^4.1.1",
7
- "vite": "^6.0.11"
7
+ "vite": "^6.1.0"
8
8
  }
9
9
  }
@@ -5,11 +5,11 @@
5
5
  "devDependencies": {
6
6
  "@nightwatch/vue": "^3.1.2",
7
7
  "@vitejs/plugin-vue": "^5.2.1",
8
- "chromedriver": "^132.0.0",
8
+ "chromedriver": "^133.0.1",
9
9
  "geckodriver": "^5.0.0",
10
- "nightwatch": "^3.11.0",
10
+ "nightwatch": "^3.11.1",
11
11
  "ts-node": "^10.9.2",
12
- "vite": "^6.0.11",
12
+ "vite": "^6.1.0",
13
13
  "vite-plugin-nightwatch": "^0.4.6"
14
14
  }
15
15
  }
@@ -4,7 +4,7 @@ describe('My First Test', function () {
4
4
  })
5
5
 
6
6
  it('visits the app root url', function () {
7
- browser.assert.textContains('.green', 'You did it!')
7
+ browser.assert.textContains('h1', 'You did it!')
8
8
  })
9
9
 
10
10
  after((browser) => browser.end())
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "dependencies": {
3
- "pinia": "^2.3.1",
3
+ "pinia": "^3.0.1",
4
4
  "vue": "^3.5.13"
5
5
  }
6
6
  }
@@ -4,5 +4,5 @@ import { test, expect } from '@playwright/test';
4
4
  // https://playwright.dev/docs/intro
5
5
  test('visits the app root url', async ({ page }) => {
6
6
  await page.goto('/');
7
- await expect(page.locator('div.greetings > h1')).toHaveText('You did it!');
7
+ await expect(page.locator('h1')).toHaveText('You did it!');
8
8
  })
@@ -4,5 +4,5 @@ import { test, expect } from '@playwright/test';
4
4
  // https://playwright.dev/docs/intro
5
5
  test('visits the app root url', async ({ page }) => {
6
6
  await page.goto('/');
7
- await expect(page.locator('div.greetings > h1')).toHaveText('You did it!');
7
+ await expect(page.locator('h1')).toHaveText('You did it!');
8
8
  })
@@ -3,6 +3,6 @@
3
3
  "test:e2e": "playwright test"
4
4
  },
5
5
  "devDependencies": {
6
- "@playwright/test": "^1.49.1"
6
+ "@playwright/test": "^1.50.1"
7
7
  }
8
8
  }
@@ -5,9 +5,9 @@
5
5
  "type-check": "vue-tsc --build"
6
6
  },
7
7
  "devDependencies": {
8
- "@types/node": "^22.10.7",
8
+ "@types/node": "^22.13.4",
9
9
  "npm-run-all2": "^7.0.2",
10
10
  "typescript": "~5.7.3",
11
- "vue-tsc": "^2.2.0"
11
+ "vue-tsc": "^2.2.2"
12
12
  }
13
13
  }
@@ -8,6 +8,6 @@
8
8
  "devDependencies": {
9
9
  "@vue/test-utils": "^2.4.6",
10
10
  "jsdom": "^26.0.0",
11
- "vitest": "^3.0.2"
11
+ "vitest": "^3.0.5"
12
12
  }
13
13
  }
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "devDependencies": {
3
- "@vitest/eslint-plugin": "1.1.25",
3
+ "@vitest/eslint-plugin": "1.1.31",
4
4
  "eslint-plugin-cypress": "^4.1.0",
5
- "eslint-plugin-playwright": "^2.1.0"
5
+ "eslint-plugin-playwright": "^2.2.0"
6
6
  }
7
7
  }
@@ -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/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
- else
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
- fi
13
- if [ -x "$basedir/node" ]; then
14
- exec "$basedir/node" "$basedir/../vite/bin/vite.js" "$@"
15
- else
16
- exec node "$basedir/../vite/bin/vite.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/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
- else
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
- fi
13
- if [ -x "$basedir/node" ]; then
14
- exec "$basedir/node" "$basedir/../cypress/bin/cypress" "$@"
15
- else
16
- exec node "$basedir/../cypress/bin/cypress" "$@"
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/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
- else
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
- fi
13
- if [ -x "$basedir/node" ]; then
14
- exec "$basedir/node" "$basedir/../start-server-and-test/src/bin/start.js" "$@"
15
- else
16
- exec node "$basedir/../start-server-and-test/src/bin/start.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/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
- else
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
- fi
13
- if [ -x "$basedir/node" ]; then
14
- exec "$basedir/node" "$basedir/../start-server-and-test/src/bin/start.js" "$@"
15
- else
16
- exec node "$basedir/../start-server-and-test/src/bin/start.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/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
- else
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
- fi
13
- if [ -x "$basedir/node" ]; then
14
- exec "$basedir/node" "$basedir/../start-server-and-test/src/bin/start.js" "$@"
15
- else
16
- exec node "$basedir/../start-server-and-test/src/bin/start.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/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
- else
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
- fi
13
- if [ -x "$basedir/node" ]; then
14
- exec "$basedir/node" "$basedir/../cypress/bin/cypress" "$@"
15
- else
16
- exec node "$basedir/../cypress/bin/cypress" "$@"
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/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
- else
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
- fi
13
- if [ -x "$basedir/node" ]; then
14
- exec "$basedir/node" "$basedir/../vite/bin/vite.js" "$@"
15
- else
16
- exec node "$basedir/../vite/bin/vite.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/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
- else
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
- fi
13
- if [ -x "$basedir/node" ]; then
14
- exec "$basedir/node" "$basedir/../chromedriver/bin/chromedriver" "$@"
15
- else
16
- exec node "$basedir/../chromedriver/bin/chromedriver" "$@"
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/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
- else
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
- fi
13
- if [ -x "$basedir/node" ]; then
14
- exec "$basedir/node" "$basedir/../geckodriver/bin/geckodriver.js" "$@"
15
- else
16
- exec node "$basedir/../geckodriver/bin/geckodriver.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/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
- else
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
- fi
13
- if [ -x "$basedir/node" ]; then
14
- exec "$basedir/node" "$basedir/../nightwatch/bin/nightwatch" "$@"
15
- else
16
- exec node "$basedir/../nightwatch/bin/nightwatch" "$@"
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/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
- else
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
- fi
13
- if [ -x "$basedir/node" ]; then
14
- exec "$basedir/node" "$basedir/../ts-node/dist/bin.js" "$@"
15
- else
16
- exec node "$basedir/../ts-node/dist/bin.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/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
- else
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
- fi
13
- if [ -x "$basedir/node" ]; then
14
- exec "$basedir/node" "$basedir/../ts-node/dist/bin-cwd.js" "$@"
15
- else
16
- exec node "$basedir/../ts-node/dist/bin-cwd.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/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
- else
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
- fi
13
- if [ -x "$basedir/node" ]; then
14
- exec "$basedir/node" "$basedir/../ts-node/dist/bin-esm.js" "$@"
15
- else
16
- exec node "$basedir/../ts-node/dist/bin-esm.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/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
- else
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
- fi
13
- if [ -x "$basedir/node" ]; then
14
- exec "$basedir/node" "$basedir/../ts-node/dist/bin-script.js" "$@"
15
- else
16
- exec node "$basedir/../ts-node/dist/bin-script.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/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
- else
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
- fi
13
- if [ -x "$basedir/node" ]; then
14
- exec "$basedir/node" "$basedir/../ts-node/dist/bin-transpile.js" "$@"
15
- else
16
- exec node "$basedir/../ts-node/dist/bin-transpile.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/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
- else
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
- fi
13
- if [ -x "$basedir/node" ]; then
14
- exec "$basedir/node" "$basedir/../ts-node/dist/bin-script-deprecated.js" "$@"
15
- else
16
- exec node "$basedir/../ts-node/dist/bin-script-deprecated.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/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
- else
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
- fi
13
- if [ -x "$basedir/node" ]; then
14
- exec "$basedir/node" "$basedir/../vite/bin/vite.js" "$@"
15
- else
16
- exec node "$basedir/../vite/bin/vite.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/@playwright+test@1.49.1/node_modules/@playwright/test/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/@playwright+test@1.49.1/node_modules/@playwright/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/@playwright+test@1.49.1/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/@playwright+test@1.49.1/node_modules/@playwright/test/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/@playwright+test@1.49.1/node_modules/@playwright/node_modules:/home/runner/work/create-vue/create-vue/node_modules/.pnpm/@playwright+test@1.49.1/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/../@playwright/test/cli.js" "$@"
15
- else
16
- exec node "$basedir/../@playwright/test/cli.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/npm-run-all2@7.0.2/node_modules/npm-run-all2/bin/npm-run-all/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/npm-run-all/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/npm-run-all/index.js" "$@"
15
- else
16
- exec node "$basedir/../npm-run-all2/bin/npm-run-all/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/npm-run-all2@7.0.2/node_modules/npm-run-all2/bin/npm-run-all/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/npm-run-all/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/npm-run-all/index.js" "$@"
15
- else
16
- exec node "$basedir/../npm-run-all2/bin/npm-run-all/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/npm-run-all2@7.0.2/node_modules/npm-run-all2/bin/run-p/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-p/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-p/index.js" "$@"
15
- else
16
- exec node "$basedir/../npm-run-all2/bin/run-p/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/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.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
- else
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
- 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