create-vue3-enterprise 1.0.22 → 1.0.24

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.22",
3
+ "version": "1.0.24",
4
4
  "description": "Vue3 + TypeScript + Vite 企业级项目脚手架",
5
5
  "type": "module",
6
6
  "bin": {
@@ -1,6 +1,4 @@
1
1
  #!/usr/bin/env sh
2
- . "$(dirname -- "$0")/_/husky.sh"
3
-
4
2
  # ============================================
5
3
  # 📝 Commit Message Validation
6
4
  # Uses Conventional Commits format
@@ -29,7 +27,7 @@ if ! npx commitlint --edit ${1}; then
29
27
  echo " • feat(auth): add login API"
30
28
  echo ""
31
29
  echo " ⚠️ Note: Use a SPACE after the colon!"
32
- echo " ❌ feat:add -> ✅ feat: add"
30
+ echo " ❌ feat:test -> ✅ feat: test"
33
31
  echo ""
34
32
  echo " Run 'npm run commit' for interactive commit"
35
33
  echo ""
@@ -1,6 +1,4 @@
1
1
  #!/usr/bin/env sh
2
- . "$(dirname -- "$0")/_/husky.sh"
3
-
4
2
  # ============================================
5
3
  # 🧹 Pre-commit Checks
6
4
  # - Code formatting (Prettier)
@@ -1,4 +1,4 @@
1
- export default {
1
+ module.exports = {
2
2
  // TypeScript and Vue files - check types
3
3
  '*.ts': ['vue-tsc --noEmit', 'eslint --fix'],
4
4
  '*.tsx': ['vue-tsc --noEmit', 'eslint --fix'],