@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 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jsenv/core",
3
- "version": "27.3.3",
3
+ "version": "27.3.4",
4
4
  "description": "Tool to develop, test and build js projects",
5
5
  "license": "MIT",
6
6
  "author": {
@@ -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 = []
@@ -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
  }