@absolutejs/absolute 0.19.0-beta.126 → 0.19.0-beta.127
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/build.js +2 -2
- package/dist/build.js.map +3 -3
- package/dist/index.js +2 -2
- package/dist/index.js.map +3 -3
- package/package.json +1 -1
package/dist/build.js
CHANGED
|
@@ -202641,7 +202641,7 @@ ${stubs}
|
|
|
202641
202641
|
result = result.replace(/new\s+URL\(\s*["'](\.\.?\/[^"']+)["']\s*,\s*import\.meta\.url\s*\)/g, (_match, relPath) => {
|
|
202642
202642
|
const absPath = resolve17(fileDir, relPath);
|
|
202643
202643
|
const rel = relative8(projectRoot, absPath);
|
|
202644
|
-
return `new URL('
|
|
202644
|
+
return `new URL('${srcUrl(rel, projectRoot)}', import.meta.url)`;
|
|
202645
202645
|
});
|
|
202646
202646
|
result = result.replace(/import\.meta\.resolve\(\s*["'](\.\.?\/[^"']+)["']\s*\)/g, (_match, relPath) => {
|
|
202647
202647
|
const absPath = resolve17(fileDir, relPath);
|
|
@@ -205033,5 +205033,5 @@ export {
|
|
|
205033
205033
|
build
|
|
205034
205034
|
};
|
|
205035
205035
|
|
|
205036
|
-
//# debugId=
|
|
205036
|
+
//# debugId=E23EB0E83119806C64756E2164756E21
|
|
205037
205037
|
//# sourceMappingURL=build.js.map
|