create-vue3-enterprise 1.0.7 → 1.0.8

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.

Potentially problematic release.


This version of create-vue3-enterprise might be problematic. Click here for more details.

package/dist/index.js CHANGED
@@ -62,9 +62,6 @@ function copyDir(srcDir, destDir) {
62
62
  fs.copyFileSync(srcFile, destFile);
63
63
  }
64
64
  }
65
- /*
66
- 脚手架在生成项目时,是从这里的代码动态生成 package.json 的,而不是直接复制 template 里的 package.json。
67
- */
68
65
  function makePkg(targetDir, features, needRouter, needPinia) {
69
66
  const name = isValidPackageName(targetDir) ? targetDir : toValidPackageName(targetDir);
70
67
  const pkg = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-vue3-enterprise",
3
- "version": "1.0.7",
3
+ "version": "1.0.8",
4
4
  "description": "Vue3 + TypeScript + Vite 企业级项目脚手架",
5
5
  "type": "module",
6
6
  "bin": {
@@ -38,9 +38,9 @@
38
38
  "happy-dom": "^13.0.0",
39
39
  "husky": "^9.0.11",
40
40
  "lint-staged": "^15.2.2",
41
- "typescript": "^5.3.0",
41
+ "typescript": "5.2.2",
42
42
  "vite": "^5.0.0",
43
43
  "vitest": "^1.2.0",
44
- "vue-tsc": "^1.8.0"
44
+ "vue-tsc": "1.8.27"
45
45
  }
46
46
  }