@jsenv/core 27.3.3 → 27.3.4
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 +9 -0
- package/package.json +1 -1
- package/src/execute/run.js +2 -0
- package/src/omega/url_graph.js +6 -0
package/dist/main.js
CHANGED
|
@@ -20871,6 +20871,13 @@ const createUrlGraph = ({
|
|
|
20871
20871
|
iterate(dependentUrlInfo);
|
|
20872
20872
|
}
|
|
20873
20873
|
});
|
|
20874
|
+
urlInfo.dependencies.forEach(dependencyUrl => {
|
|
20875
|
+
const dependencyUrlInfo = getUrlInfo(dependencyUrl);
|
|
20876
|
+
|
|
20877
|
+
if (dependencyUrlInfo.isInline) {
|
|
20878
|
+
iterate(dependencyUrlInfo);
|
|
20879
|
+
}
|
|
20880
|
+
});
|
|
20874
20881
|
};
|
|
20875
20882
|
|
|
20876
20883
|
iterate(urlInfo);
|
|
@@ -24142,6 +24149,7 @@ const run = async ({
|
|
|
24142
24149
|
callbacks.push(() => {
|
|
24143
24150
|
if (result.status === "errored" && Abort.isAbortError(result.error) && timeoutAbortSource.signal.aborted) {
|
|
24144
24151
|
result.status = "timedout";
|
|
24152
|
+
delete result.error;
|
|
24145
24153
|
}
|
|
24146
24154
|
});
|
|
24147
24155
|
}
|
|
@@ -24149,6 +24157,7 @@ const run = async ({
|
|
|
24149
24157
|
callbacks.push(() => {
|
|
24150
24158
|
if (result.status === "errored" && Abort.isAbortError(result.error)) {
|
|
24151
24159
|
result.status = "aborted";
|
|
24160
|
+
delete result.error;
|
|
24152
24161
|
}
|
|
24153
24162
|
});
|
|
24154
24163
|
const consoleCalls = [];
|
package/package.json
CHANGED
package/src/execute/run.js
CHANGED
|
@@ -40,12 +40,14 @@ export const run = async ({
|
|
|
40
40
|
timeoutAbortSource.signal.aborted
|
|
41
41
|
) {
|
|
42
42
|
result.status = "timedout"
|
|
43
|
+
delete result.error
|
|
43
44
|
}
|
|
44
45
|
})
|
|
45
46
|
}
|
|
46
47
|
callbacks.push(() => {
|
|
47
48
|
if (result.status === "errored" && Abort.isAbortError(result.error)) {
|
|
48
49
|
result.status = "aborted"
|
|
50
|
+
delete result.error
|
|
49
51
|
}
|
|
50
52
|
})
|
|
51
53
|
const consoleCalls = []
|
package/src/omega/url_graph.js
CHANGED
|
@@ -145,6 +145,12 @@ export const createUrlGraph = ({
|
|
|
145
145
|
iterate(dependentUrlInfo)
|
|
146
146
|
}
|
|
147
147
|
})
|
|
148
|
+
urlInfo.dependencies.forEach((dependencyUrl) => {
|
|
149
|
+
const dependencyUrlInfo = getUrlInfo(dependencyUrl)
|
|
150
|
+
if (dependencyUrlInfo.isInline) {
|
|
151
|
+
iterate(dependencyUrlInfo)
|
|
152
|
+
}
|
|
153
|
+
})
|
|
148
154
|
}
|
|
149
155
|
iterate(urlInfo)
|
|
150
156
|
}
|