@coze-arch/cli 0.0.5 → 0.0.6-alpha.43776c
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/lib/__templates__/nuxt-vue/nuxt.config.ts +13 -0
- package/lib/__templates__/taro/components.md +1686 -0
- package/lib/__templates__/taro/eslint.config.mjs +8 -2
- package/lib/__templates__/taro/package.json +1 -1
- package/lib/__templates__/taro/pnpm-lock.yaml +5 -5
- package/lib/__templates__/taro/src/app.tsx +8 -1
- package/lib/__templates__/taro/src/components/ui/accordion.tsx +1 -1
- package/lib/__templates__/taro/src/components/ui/breadcrumb.tsx +1 -1
- package/lib/__templates__/taro/src/components/ui/calendar.tsx +4 -4
- package/lib/__templates__/taro/src/components/ui/carousel.tsx +6 -6
- package/lib/__templates__/taro/src/components/ui/command.tsx +1 -1
- package/lib/__templates__/taro/src/components/ui/context-menu.tsx +3 -3
- package/lib/__templates__/taro/src/components/ui/dialog.tsx +1 -1
- package/lib/__templates__/taro/src/components/ui/dropdown-menu.tsx +3 -3
- package/lib/__templates__/taro/src/components/ui/input-otp.tsx +1 -1
- package/lib/__templates__/taro/src/components/ui/menubar.tsx +3 -3
- package/lib/__templates__/taro/src/components/ui/navigation-menu.tsx +2 -0
- package/lib/__templates__/taro/src/components/ui/pagination.tsx +3 -3
- package/lib/__templates__/taro/src/components/ui/resizable.tsx +1 -1
- package/lib/__templates__/taro/src/components/ui/select.tsx +4 -4
- package/lib/__templates__/taro/src/components/ui/sheet.tsx +2 -2
- package/lib/__templates__/taro/src/components/ui/toast.tsx +2 -2
- package/lib/__templates__/taro/src/presets/env.ts +1 -0
- package/lib/__templates__/taro/src/presets/h5-container.tsx +2 -1
- package/lib/__templates__/taro/src/presets/h5-error-boundary.tsx +391 -0
- package/lib/__templates__/taro/src/presets/h5-navbar.tsx +4 -3
- package/lib/__templates__/taro/src/presets/h5-styles.ts +3 -1
- package/lib/__templates__/taro/src/presets/index.tsx +15 -2
- package/lib/__templates__/taro/types/lucide.d.ts +6 -0
- package/lib/cli.js +994 -169
- package/package.json +2 -1
|
@@ -91,6 +91,19 @@ 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
|
+
},
|
|
94
107
|
},
|
|
95
108
|
},
|
|
96
109
|
|