create-vue 3.2.0 → 3.2.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.2.0 | MIT */
2
+ /*! create-vue v3.2.1 | MIT */
3
3
  var __create = Object.create;
4
4
  var __defProp = Object.defineProperty;
5
5
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
@@ -5563,10 +5563,10 @@ var path3 = __toESM(require("path"), 1);
5563
5563
  var devDependencies = {
5564
5564
  "@rushstack/eslint-patch": "^1.1.0",
5565
5565
  "@vue/eslint-config-prettier": "^7.0.0",
5566
- "@vue/eslint-config-typescript": "^10.0.0",
5566
+ "@vue/eslint-config-typescript": "^11.0.0",
5567
5567
  eslint: "^8.5.0",
5568
5568
  "eslint-plugin-cypress": "^2.12.1",
5569
- "eslint-plugin-vue": "^8.2.0",
5569
+ "eslint-plugin-vue": "^9.0.0",
5570
5570
  prettier: "^2.5.1"
5571
5571
  };
5572
5572
 
@@ -5579,10 +5579,7 @@ addEslintDependency("eslint");
5579
5579
  addEslintDependency("eslint-plugin-vue");
5580
5580
  var config = {
5581
5581
  root: true,
5582
- extends: ["plugin:vue/vue3-essential"],
5583
- env: {
5584
- "vue/setup-compiler-macros": true
5585
- }
5582
+ extends: ["plugin:vue/vue3-essential"]
5586
5583
  };
5587
5584
  function configureEslint({ language, styleGuide, needsPrettier, needsCypress, needsCypressCT }) {
5588
5585
  switch (`${styleGuide}-${language}`) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-vue",
3
- "version": "3.2.0",
3
+ "version": "3.2.1",
4
4
  "description": "An easy way to start a Vue project",
5
5
  "type": "module",
6
6
  "bin": {
@@ -13,6 +13,15 @@
13
13
  "engines": {
14
14
  "node": "^14.16.0 || >=16.0.0"
15
15
  },
16
+ "scripts": {
17
+ "prepare": "husky install",
18
+ "format": "prettier --write .",
19
+ "build": "zx ./scripts/build.mjs",
20
+ "snapshot": "zx ./scripts/snapshot.mjs",
21
+ "pretest": "run-s build snapshot",
22
+ "test": "zx ./scripts/test.mjs",
23
+ "prepublishOnly": "zx ./scripts/prepublish.mjs"
24
+ },
16
25
  "repository": {
17
26
  "type": "git",
18
27
  "url": "git+https://github.com/vuejs/create-vue.git"
@@ -43,12 +52,5 @@
43
52
  "*.{js,ts,vue,json}": [
44
53
  "prettier --write"
45
54
  ]
46
- },
47
- "scripts": {
48
- "format": "prettier --write .",
49
- "build": "zx ./scripts/build.mjs",
50
- "snapshot": "zx ./scripts/snapshot.mjs",
51
- "pretest": "run-s build snapshot",
52
- "test": "zx ./scripts/test.mjs"
53
55
  }
54
- }
56
+ }
File without changes
File without changes
File without changes
File without changes
@@ -2,10 +2,10 @@
2
2
  "devDependencies": {
3
3
  "@rushstack/eslint-patch": "^1.1.0",
4
4
  "@vue/eslint-config-prettier": "^7.0.0",
5
- "@vue/eslint-config-typescript": "^10.0.0",
5
+ "@vue/eslint-config-typescript": "^11.0.0",
6
6
  "eslint": "^8.5.0",
7
7
  "eslint-plugin-cypress": "^2.12.1",
8
- "eslint-plugin-vue": "^8.2.0",
8
+ "eslint-plugin-vue": "^9.0.0",
9
9
  "prettier": "^2.5.1"
10
10
  }
11
11
  }