@jsenv/core 27.0.0-alpha.62 → 27.0.0-alpha.63

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jsenv/core",
3
- "version": "27.0.0-alpha.62",
3
+ "version": "27.0.0-alpha.63",
4
4
  "description": "Tool to develop, test and build js projects",
5
5
  "license": "MIT",
6
6
  "author": {
@@ -70,7 +70,7 @@
70
70
  "@jsenv/integrity": "0.0.1",
71
71
  "@jsenv/log": "1.6.1",
72
72
  "@jsenv/logger": "4.0.1",
73
- "@jsenv/node-esm-resolution": "0.0.6",
73
+ "@jsenv/node-esm-resolution": "0.0.7",
74
74
  "@jsenv/server": "12.6.2",
75
75
  "@jsenv/uneval": "1.6.0",
76
76
  "@jsenv/utils": "1.7.7",
@@ -57,7 +57,9 @@ export const startBuildServer = async ({
57
57
  // - inside a forked child process
58
58
  // - inside a worker thread
59
59
  // (because node cluster won't work)
60
- buildServerAutoreload = typeof process.send !== "function" && !parentPort,
60
+ buildServerAutoreload = typeof process.send !== "function" &&
61
+ !parentPort &&
62
+ !process.debugPort,
61
63
  cooldownBetweenFileEvents,
62
64
  }) => {
63
65
  const logger = createLogger({ logLevel })
@@ -40,7 +40,9 @@ export const startDevServer = async ({
40
40
  // - inside a forked child process
41
41
  // - inside a worker thread
42
42
  // (because node cluster won't work)
43
- devServerAutoreload = typeof process.send !== "function" && !parentPort,
43
+ devServerAutoreload = typeof process.send !== "function" &&
44
+ !parentPort &&
45
+ !process.debugPort,
44
46
  clientFiles = {
45
47
  "./**": true,
46
48
  "./**/.*/": false, // any folder starting with a dot is ignored (includes .git,.jsenv for instance)