@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
|
@@ -155,7 +155,10 @@ export const startDevServer = async ({
|
|
|
155
155
|
})
|
|
156
156
|
}
|
|
157
157
|
const stopWatchingClientFiles = registerDirectoryLifecycle(rootDirectoryUrl, {
|
|
158
|
-
watchPatterns:
|
|
158
|
+
watchPatterns: {
|
|
159
|
+
...clientFiles,
|
|
160
|
+
".jsenv/": false,
|
|
161
|
+
},
|
|
159
162
|
cooldownBetweenFileEvents,
|
|
160
163
|
keepProcessAlive: false,
|
|
161
164
|
recursive: true,
|