create-vue 3.4.0 → 3.4.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/outfile.cjs CHANGED
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env node
2
- /*! create-vue v3.4.0 | MIT */
2
+ /*! create-vue v3.4.1 | MIT */
3
3
  var __create = Object.create;
4
4
  var __defProp = Object.defineProperty;
5
5
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
@@ -3977,11 +3977,11 @@ ${banner_default}
3977
3977
  type: () => isFeatureFlagsUsed ? null : "select",
3978
3978
  message: "Add an End-to-End Testing Solution?",
3979
3979
  initial: 0,
3980
- choices: (prev, anwsers) => [
3980
+ choices: (prev, answers) => [
3981
3981
  { title: "No", value: false },
3982
3982
  {
3983
3983
  title: "Cypress",
3984
- description: anwsers.needsVitest ? void 0 : "also supports unit testing with Cypress Component Testing",
3984
+ description: answers.needsVitest ? void 0 : "also supports unit testing with Cypress Component Testing",
3985
3985
  value: "cypress"
3986
3986
  },
3987
3987
  {
@@ -4084,6 +4084,9 @@ Scaffolding project in ${root}...`);
4084
4084
  if (needsCypressCT) {
4085
4085
  render("tsconfig/cypress-ct");
4086
4086
  }
4087
+ if (needsPlaywright) {
4088
+ render("tsconfig/playwright");
4089
+ }
4087
4090
  if (needsVitest) {
4088
4091
  render("tsconfig/vitest");
4089
4092
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-vue",
3
- "version": "3.4.0",
3
+ "version": "3.4.1",
4
4
  "description": "An easy way to start a Vue project",
5
5
  "type": "module",
6
6
  "bin": {
@@ -25,19 +25,19 @@
25
25
  },
26
26
  "homepage": "https://github.com/vuejs/create-vue#readme",
27
27
  "devDependencies": {
28
- "@types/eslint": "^8.4.7",
29
- "@types/node": "^16.11.68",
28
+ "@types/eslint": "^8.4.10",
29
+ "@types/node": "^18.11.9",
30
30
  "@types/prompts": "^2.4.1",
31
31
  "@vue/create-eslint-config": "^0.1.3",
32
32
  "@vue/tsconfig": "^0.1.3",
33
33
  "esbuild": "^0.14.53",
34
34
  "esbuild-plugin-license": "^1.2.2",
35
- "husky": "^8.0.1",
35
+ "husky": "^8.0.2",
36
36
  "kolorist": "^1.6.0",
37
37
  "lint-staged": "^13.0.3",
38
38
  "minimist": "^1.2.7",
39
39
  "npm-run-all": "^4.1.5",
40
- "prettier": "^2.7.1",
40
+ "prettier": "^2.8.0",
41
41
  "prompts": "^2.4.2",
42
42
  "zx": "^4.3.0"
43
43
  },
@@ -1,14 +1,15 @@
1
1
  {
2
+ "private": true,
2
3
  "scripts": {
3
4
  "dev": "vite",
4
5
  "build": "vite build",
5
6
  "preview": "vite preview"
6
7
  },
7
8
  "dependencies": {
8
- "vue": "^3.2.41"
9
+ "vue": "^3.2.45"
9
10
  },
10
11
  "devDependencies": {
11
- "@vitejs/plugin-vue": "^3.1.2",
12
- "vite": "^3.1.8"
12
+ "@vitejs/plugin-vue": "^3.2.0",
13
+ "vite": "^3.2.4"
13
14
  }
14
15
  }
@@ -4,7 +4,7 @@
4
4
  "test:e2e:dev": "start-server-and-test 'vite dev --port 4173' :4173 'cypress open --e2e'"
5
5
  },
6
6
  "devDependencies": {
7
- "cypress": "^10.10.0",
7
+ "cypress": "^11.2.0",
8
8
  "start-server-and-test": "^1.14.0"
9
9
  }
10
10
  }
@@ -4,9 +4,9 @@
4
4
  "test:unit:dev": "cypress open --component"
5
5
  },
6
6
  "dependencies": {
7
- "vue": "^3.2.41"
7
+ "vue": "^3.2.45"
8
8
  },
9
9
  "devDependencies": {
10
- "cypress": "^10.10.0"
10
+ "cypress": "^11.2.0"
11
11
  }
12
12
  }
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "dependencies": {
3
- "vue": "^3.2.41"
3
+ "vue": "^3.2.45"
4
4
  },
5
5
  "devDependencies": {
6
- "@vitejs/plugin-vue-jsx": "^2.0.1",
7
- "vite": "^3.1.8"
6
+ "@vitejs/plugin-vue-jsx": "^2.1.1",
7
+ "vite": "^3.2.4"
8
8
  }
9
9
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "dependencies": {
3
- "pinia": "^2.0.23",
4
- "vue": "^3.2.41"
3
+ "pinia": "^2.0.26",
4
+ "vue": "^3.2.45"
5
5
  }
6
6
  }
@@ -3,6 +3,6 @@
3
3
  "test:e2e": "playwright test"
4
4
  },
5
5
  "devDependencies": {
6
- "@playwright/test": "^1.27.1"
6
+ "@playwright/test": "^1.28.1"
7
7
  }
8
8
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "dependencies": {
3
- "vue": "^3.2.41",
4
- "vue-router": "^4.1.5"
3
+ "vue": "^3.2.45",
4
+ "vue-router": "^4.1.6"
5
5
  }
6
6
  }
@@ -5,9 +5,9 @@
5
5
  "type-check": "vue-tsc --noEmit"
6
6
  },
7
7
  "devDependencies": {
8
- "@types/node": "^16.11.68",
8
+ "@types/node": "^18.11.9",
9
9
  "npm-run-all": "^4.1.5",
10
10
  "typescript": "~4.7.4",
11
- "vue-tsc": "^1.0.8"
11
+ "vue-tsc": "^1.0.9"
12
12
  }
13
13
  }
@@ -3,11 +3,11 @@
3
3
  "test:unit": "vitest --environment jsdom --root src/"
4
4
  },
5
5
  "dependencies": {
6
- "vue": "^3.2.41"
6
+ "vue": "^3.2.45"
7
7
  },
8
8
  "devDependencies": {
9
- "@vue/test-utils": "^2.1.0",
10
- "jsdom": "^20.0.1",
11
- "vitest": "^0.24.3"
9
+ "@vue/test-utils": "^2.2.4",
10
+ "jsdom": "^20.0.3",
11
+ "vitest": "^0.25.3"
12
12
  }
13
13
  }
@@ -0,0 +1,4 @@
1
+ {
2
+ "extends": "@vue/tsconfig/tsconfig.node.json",
3
+ "include": ["./**/*"]
4
+ }
@@ -3,6 +3,6 @@
3
3
  "type-check": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false"
4
4
  },
5
5
  "devDependencies": {
6
- "@types/jsdom": "^20.0.0"
6
+ "@types/jsdom": "^20.0.1"
7
7
  }
8
8
  }