@jsenv/core 27.0.0-alpha.93 → 27.0.0-alpha.94

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/dist/main.js CHANGED
@@ -19416,7 +19416,9 @@ const startDevServer = async ({
19416
19416
  };
19417
19417
 
19418
19418
  const stopWatchingClientFiles = registerDirectoryLifecycle(rootDirectoryUrl, {
19419
- watchPatterns: clientFiles,
19419
+ watchPatterns: { ...clientFiles,
19420
+ ".jsenv/": false
19421
+ },
19420
19422
  cooldownBetweenFileEvents,
19421
19423
  keepProcessAlive: false,
19422
19424
  recursive: true,
@@ -24831,7 +24833,8 @@ const startBuildServer = async ({
24831
24833
  const stopWatchingBuildServerFiles = registerDirectoryLifecycle(rootDirectoryUrl, {
24832
24834
  watchPatterns: {
24833
24835
  [buildServerMainFile]: true,
24834
- ...buildServerFiles
24836
+ ...buildServerFiles,
24837
+ ".jsenv/": false
24835
24838
  },
24836
24839
  cooldownBetweenFileEvents,
24837
24840
  keepProcessAlive: false,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jsenv/core",
3
- "version": "27.0.0-alpha.93",
3
+ "version": "27.0.0-alpha.94",
4
4
  "description": "Tool to develop, test and build js projects",
5
5
  "license": "MIT",
6
6
  "author": {
@@ -111,6 +111,7 @@ export const startBuildServer = async ({
111
111
  watchPatterns: {
112
112
  [buildServerMainFile]: true,
113
113
  ...buildServerFiles,
114
+ ".jsenv/": false,
114
115
  },
115
116
  cooldownBetweenFileEvents,
116
117
  keepProcessAlive: false,
@@ -155,7 +155,10 @@ export const startDevServer = async ({
155
155
  })
156
156
  }
157
157
  const stopWatchingClientFiles = registerDirectoryLifecycle(rootDirectoryUrl, {
158
- watchPatterns: clientFiles,
158
+ watchPatterns: {
159
+ ...clientFiles,
160
+ ".jsenv/": false,
161
+ },
159
162
  cooldownBetweenFileEvents,
160
163
  keepProcessAlive: false,
161
164
  recursive: true,