@coze-arch/cli 0.0.5-alpha.6339fe → 0.0.6

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.
Files changed (25) hide show
  1. package/lib/__templates__/nuxt-vue/nuxt.config.ts +0 -13
  2. package/lib/__templates__/taro/components.md +1686 -0
  3. package/lib/__templates__/taro/eslint.config.mjs +8 -2
  4. package/lib/__templates__/taro/package.json +1 -1
  5. package/lib/__templates__/taro/pnpm-lock.yaml +5 -5
  6. package/lib/__templates__/taro/src/app.tsx +6 -1
  7. package/lib/__templates__/taro/src/components/ui/accordion.tsx +1 -1
  8. package/lib/__templates__/taro/src/components/ui/breadcrumb.tsx +1 -1
  9. package/lib/__templates__/taro/src/components/ui/calendar.tsx +4 -4
  10. package/lib/__templates__/taro/src/components/ui/carousel.tsx +2 -2
  11. package/lib/__templates__/taro/src/components/ui/command.tsx +1 -1
  12. package/lib/__templates__/taro/src/components/ui/context-menu.tsx +3 -3
  13. package/lib/__templates__/taro/src/components/ui/dialog.tsx +1 -1
  14. package/lib/__templates__/taro/src/components/ui/dropdown-menu.tsx +3 -3
  15. package/lib/__templates__/taro/src/components/ui/input-otp.tsx +1 -1
  16. package/lib/__templates__/taro/src/components/ui/menubar.tsx +3 -3
  17. package/lib/__templates__/taro/src/components/ui/navigation-menu.tsx +2 -0
  18. package/lib/__templates__/taro/src/components/ui/pagination.tsx +3 -3
  19. package/lib/__templates__/taro/src/components/ui/resizable.tsx +1 -1
  20. package/lib/__templates__/taro/src/components/ui/select.tsx +4 -4
  21. package/lib/__templates__/taro/src/components/ui/sheet.tsx +1 -1
  22. package/lib/__templates__/taro/src/components/ui/toast.tsx +1 -1
  23. package/lib/__templates__/taro/types/lucide.d.ts +6 -0
  24. package/lib/cli.js +122 -968
  25. package/package.json +1 -2
@@ -91,19 +91,6 @@ export default defineNuxtConfig({
91
91
  clientPort: 443,
92
92
  timeout: 30000,
93
93
  },
94
- // Fix EMFILE: too many open files error
95
- // Exclude large directories from file watching to avoid exceeding system limits
96
- watch: {
97
- ignored: [
98
- '**/node_modules/**',
99
- '**/.nuxt/**',
100
- '**/.output/**',
101
- '**/dist/**',
102
- '**/.git/**',
103
- '**/coverage/**',
104
- '**/.cache/**',
105
- ],
106
- },
107
94
  },
108
95
  },
109
96