create-vue3-enterprise 1.0.3 → 1.0.4
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/package.json +1 -1
- package/template/.prettierignore +39 -0
- package/template/package.json +7 -3
package/package.json
CHANGED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
# 依赖目录
|
|
2
|
+
node_modules
|
|
3
|
+
dist
|
|
4
|
+
build
|
|
5
|
+
*.local
|
|
6
|
+
|
|
7
|
+
# 测试相关
|
|
8
|
+
coverage
|
|
9
|
+
test-results
|
|
10
|
+
.nyc_output
|
|
11
|
+
|
|
12
|
+
# 日志文件
|
|
13
|
+
*.log
|
|
14
|
+
logs
|
|
15
|
+
|
|
16
|
+
# IDE
|
|
17
|
+
.vscode
|
|
18
|
+
.idea
|
|
19
|
+
*.swp
|
|
20
|
+
*.swo
|
|
21
|
+
*~
|
|
22
|
+
|
|
23
|
+
# 系统文件
|
|
24
|
+
.DS_Store
|
|
25
|
+
Thumbs.db
|
|
26
|
+
|
|
27
|
+
# 锁定文件(Prettier 不处理)
|
|
28
|
+
package-lock.json
|
|
29
|
+
yarn.lock
|
|
30
|
+
pnpm-lock.yaml
|
|
31
|
+
|
|
32
|
+
# 自动生成的文件
|
|
33
|
+
CHANGELOG.md
|
|
34
|
+
LICENSE
|
|
35
|
+
|
|
36
|
+
# 大型二进制文件
|
|
37
|
+
*.min.js
|
|
38
|
+
*.min.css
|
|
39
|
+
*.bundle.js
|
package/template/package.json
CHANGED
|
@@ -21,7 +21,10 @@
|
|
|
21
21
|
"eslint --fix",
|
|
22
22
|
"prettier --write"
|
|
23
23
|
],
|
|
24
|
-
"*.{json,md,css,scss,html}": [
|
|
24
|
+
"*.{json,md,css,scss,html,xml,yaml,yml}": [
|
|
25
|
+
"prettier --write"
|
|
26
|
+
],
|
|
27
|
+
"*.{png,jpg,jpeg,gif,svg,webp}": [
|
|
25
28
|
"prettier --write"
|
|
26
29
|
]
|
|
27
30
|
},
|
|
@@ -29,14 +32,15 @@
|
|
|
29
32
|
"vue": "^3.4.0"
|
|
30
33
|
},
|
|
31
34
|
"devDependencies": {
|
|
35
|
+
"@rushstack/eslint-patch": "^1.16.1",
|
|
32
36
|
"@vitejs/plugin-vue": "^5.0.0",
|
|
33
37
|
"@vue/test-utils": "^2.4.0",
|
|
34
38
|
"happy-dom": "^13.0.0",
|
|
35
39
|
"husky": "^9.0.11",
|
|
36
40
|
"lint-staged": "^15.2.2",
|
|
37
|
-
"typescript": "^5.
|
|
41
|
+
"typescript": "^5.2.2",
|
|
38
42
|
"vite": "^5.0.0",
|
|
39
43
|
"vitest": "^1.2.0",
|
|
40
|
-
"vue-tsc": "^1.8.
|
|
44
|
+
"vue-tsc": "^1.8.27"
|
|
41
45
|
}
|
|
42
46
|
}
|