@jsenv/core 23.5.1 → 23.5.2
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": "23.5.
|
|
3
|
+
"version": "23.5.2",
|
|
4
4
|
"description": "Tool to develop, test and build js projects",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
"@jsenv/importmap": "1.1.0",
|
|
68
68
|
"@jsenv/log": "1.4.0",
|
|
69
69
|
"@jsenv/logger": "4.0.1",
|
|
70
|
-
"@jsenv/server": "10.0.
|
|
70
|
+
"@jsenv/server": "10.0.4",
|
|
71
71
|
"@jsenv/uneval": "1.6.0",
|
|
72
72
|
"@jsenv/workers": "1.2.0",
|
|
73
73
|
"@rollup/plugin-commonjs": "21.0.0",
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { Abort, raceProcessTeardownEvents } from "@jsenv/abort"
|
|
2
|
+
import { createDetailedMessage } from "@jsenv/logger"
|
|
2
3
|
|
|
3
4
|
import { mergeRuntimeSupport } from "@jsenv/core/src/internal/generateGroupMap/runtime_support.js"
|
|
4
5
|
import { startCompileServer } from "../compiling/startCompileServer.js"
|
|
@@ -73,6 +74,12 @@ export const executePlan = async (
|
|
|
73
74
|
})
|
|
74
75
|
})
|
|
75
76
|
|
|
77
|
+
logger.debug(
|
|
78
|
+
createDetailedMessage(`Prepare executing plan`, {
|
|
79
|
+
runtimeSupport: JSON.stringify(runtimeSupport, null, " "),
|
|
80
|
+
}),
|
|
81
|
+
)
|
|
82
|
+
|
|
76
83
|
const multipleExecutionsOperation = Abort.startOperation()
|
|
77
84
|
multipleExecutionsOperation.addAbortSignal(signal)
|
|
78
85
|
if (handleSIGINT) {
|
|
@@ -82,6 +89,7 @@ export const executePlan = async (
|
|
|
82
89
|
SIGINT: true,
|
|
83
90
|
},
|
|
84
91
|
() => {
|
|
92
|
+
logger.debug(`SIGINT abort`)
|
|
85
93
|
abort()
|
|
86
94
|
},
|
|
87
95
|
)
|
|
@@ -119,6 +127,7 @@ export const executePlan = async (
|
|
|
119
127
|
await compileServer.stop()
|
|
120
128
|
})
|
|
121
129
|
|
|
130
|
+
logger.debug(`Generate executions`)
|
|
122
131
|
const executionSteps = await generateExecutionSteps(
|
|
123
132
|
{
|
|
124
133
|
...plan,
|
|
@@ -129,6 +138,7 @@ export const executePlan = async (
|
|
|
129
138
|
projectDirectoryUrl,
|
|
130
139
|
},
|
|
131
140
|
)
|
|
141
|
+
logger.debug(`${executionSteps.length} executions planned`)
|
|
132
142
|
|
|
133
143
|
const result = await executeConcurrently(executionSteps, {
|
|
134
144
|
multipleExecutionsOperation,
|