@yoamigo.com/core 1.0.0 → 1.0.1

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 (2) hide show
  1. package/dist/plugin.js +3 -2
  2. package/package.json +1 -1
package/dist/plugin.js CHANGED
@@ -86,10 +86,11 @@ if (import.meta.hot) {
86
86
  strictPort: false,
87
87
  // Allow Vite to find next available port
88
88
  watch: {
89
- // Prevent Vite from watching node_modules and pnpm store
89
+ // Prevent Vite from watching node_modules, pnpm store, and dist
90
90
  // Critical when node_modules contains symlinks to pnpm store (bundled deps)
91
91
  // Without this, Vite exceeds inotify file watcher limit (ENOSPC error)
92
- ignored: ["**/node_modules/**", "**/.pnpm-store/**"]
92
+ // dist is ignored to prevent HMR triggers when build outputs files
93
+ ignored: ["**/node_modules/**", "**/.pnpm-store/**", "**/dist/**"]
93
94
  },
94
95
  hmr: {
95
96
  // When behind a proxy (builder worker), HMR needs to connect through the proxy
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yoamigo.com/core",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Core components, router, and utilities for YoAmigo templates",
5
5
  "type": "module",
6
6
  "license": "SEE LICENSE IN LICENSE",