@absolutejs/absolute 0.19.0-beta.1120 → 0.19.0-beta.1121
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/index.js
CHANGED
|
@@ -38260,10 +38260,8 @@ var toSafeFileName6 = (specifier) => {
|
|
|
38260
38260
|
setup(bld) {
|
|
38261
38261
|
bld.onLoad({ filter: /\.(?:m?js|cjs)$/ }, async (args) => {
|
|
38262
38262
|
const source = await Bun.file(args.path).text();
|
|
38263
|
-
if (!source.includes("@__PURE__"))
|
|
38264
|
-
return;
|
|
38265
38263
|
return {
|
|
38266
|
-
contents: source.replace(PURE_ANNOTATION, ""),
|
|
38264
|
+
contents: source.includes("@__PURE__") ? source.replace(PURE_ANNOTATION, "") : source,
|
|
38267
38265
|
loader: args.path.endsWith(".cjs") ? "js" : "js"
|
|
38268
38266
|
};
|
|
38269
38267
|
});
|
|
@@ -47931,5 +47929,5 @@ export {
|
|
|
47931
47929
|
ANGULAR_INIT_TIMEOUT_MS
|
|
47932
47930
|
};
|
|
47933
47931
|
|
|
47934
|
-
//# debugId=
|
|
47932
|
+
//# debugId=63188E855055C82564756E2164756E21
|
|
47935
47933
|
//# sourceMappingURL=index.js.map
|