create-vue3-enterprise 1.0.24 → 1.0.25

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-vue3-enterprise",
3
- "version": "1.0.24",
3
+ "version": "1.0.25",
4
4
  "description": "Vue3 + TypeScript + Vite 企业级项目脚手架",
5
5
  "type": "module",
6
6
  "bin": {
@@ -1,8 +1,10 @@
1
1
  module.exports = {
2
- // TypeScript and Vue files - check types
3
- '*.ts': ['vue-tsc --noEmit', 'eslint --fix'],
4
- '*.tsx': ['vue-tsc --noEmit', 'eslint --fix'],
5
- '*.vue': ['vue-tsc --noEmit', 'eslint --fix'],
6
- // Format all staged files
7
- '**/*': ['prettier --write --ignore-unknown'],
2
+ // TypeScript and Vue files - lint only (skip slow type check in pre-commit)
3
+ '*.ts': ['eslint --fix'],
4
+ '*.tsx': ['eslint --fix'],
5
+ '*.vue': ['eslint --fix'],
6
+ // Format only (fast)
7
+ '*.{js,jsx,json,css,html,md}': ['prettier --write'],
8
+ // Vue and TS files - format only (skip type check for speed)
9
+ '*.{ts,tsx,vue}': ['prettier --write'],
8
10
  }