@jsenv/core 40.0.5 → 40.0.6

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/js/build.js CHANGED
@@ -1859,11 +1859,10 @@ const jsenvPluginSubbuilds = (
1859
1859
  },
1860
1860
  fetchUrlContent: async (urlInfo) => {
1861
1861
  if (!entryPointBuildUrlSet.has(urlInfo.url)) {
1862
- return null;
1862
+ return;
1863
1863
  }
1864
1864
  await buildPromise;
1865
1865
  urlInfo.typeHint = "asset"; // this ensure the rest of jsenv do not scan or modify the content of this file
1866
- return null;
1867
1866
  },
1868
1867
  };
1869
1868
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jsenv/core",
3
- "version": "40.0.5",
3
+ "version": "40.0.6",
4
4
  "description": "Tool to develop, test and build js projects",
5
5
  "license": "MIT",
6
6
  "author": {
@@ -60,11 +60,10 @@ export const jsenvPluginSubbuilds = (
60
60
  },
61
61
  fetchUrlContent: async (urlInfo) => {
62
62
  if (!entryPointBuildUrlSet.has(urlInfo.url)) {
63
- return null;
63
+ return;
64
64
  }
65
65
  await buildPromise;
66
66
  urlInfo.typeHint = "asset"; // this ensure the rest of jsenv do not scan or modify the content of this file
67
- return null;
68
67
  },
69
68
  };
70
69
  });