@absolutejs/absolute 0.19.0-beta.732 → 0.19.0-beta.734
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 +10 -7
- package/dist/build.js.map +6 -5
- package/dist/index.js +10 -7
- package/dist/index.js.map +6 -5
- package/dist/src/build/vendorEntrySource.d.ts +26 -0
- package/package.json +1 -1
package/dist/build.js
CHANGED
|
@@ -44468,6 +44468,12 @@ var init_buildReactVendor = __esm(() => {
|
|
|
44468
44468
|
];
|
|
44469
44469
|
});
|
|
44470
44470
|
|
|
44471
|
+
// src/build/vendorEntrySource.ts
|
|
44472
|
+
var generateVendorEntrySource = (specifier) => `import * as __abs_ns from '${specifier}';
|
|
44473
|
+
` + `export * from '${specifier}';
|
|
44474
|
+
` + `export default __abs_ns.default;
|
|
44475
|
+
`;
|
|
44476
|
+
|
|
44471
44477
|
// src/build/buildAngularVendor.ts
|
|
44472
44478
|
var exports_buildAngularVendor = {};
|
|
44473
44479
|
__export(exports_buildAngularVendor, {
|
|
@@ -44577,8 +44583,7 @@ var REQUIRED_ANGULAR_SPECIFIERS, SERVER_ONLY_ANGULAR_SPECIFIERS, SCAN_SKIP_DIRS,
|
|
|
44577
44583
|
const entrypoints = await Promise.all(specifiers.map(async (specifier) => {
|
|
44578
44584
|
const safeName = toSafeFileName2(specifier);
|
|
44579
44585
|
const entryPath = join17(tmpDir, `${safeName}.ts`);
|
|
44580
|
-
await Bun.write(entryPath,
|
|
44581
|
-
`);
|
|
44586
|
+
await Bun.write(entryPath, generateVendorEntrySource(specifier));
|
|
44582
44587
|
return entryPath;
|
|
44583
44588
|
}));
|
|
44584
44589
|
const result = await bunBuild4({
|
|
@@ -49365,8 +49370,7 @@ var toSafeFileName5 = (specifier) => specifier.replace(/\//g, "_").replace(/@/g,
|
|
|
49365
49370
|
dep: Array.from(dep).filter(isResolvable4),
|
|
49366
49371
|
framework: Array.from(framework).filter(isResolvable4)
|
|
49367
49372
|
};
|
|
49368
|
-
},
|
|
49369
|
-
`, collectTransitiveImports = async (specs, alreadyVendored, alreadyScanned) => {
|
|
49373
|
+
}, collectTransitiveImports = async (specs, alreadyVendored, alreadyScanned) => {
|
|
49370
49374
|
const { readFileSync: readFileSync15 } = await import("fs");
|
|
49371
49375
|
const transpiler4 = new Bun.Transpiler({ loader: "js" });
|
|
49372
49376
|
const newSpecs = new Set;
|
|
@@ -49412,8 +49416,7 @@ var toSafeFileName5 = (specifier) => specifier.replace(/\//g, "_").replace(/@/g,
|
|
|
49412
49416
|
const entrypoints = await Promise.all(specifiers.map(async (specifier) => {
|
|
49413
49417
|
const safeName = toSafeFileName5(specifier);
|
|
49414
49418
|
const entryPath = join22(tmpDir, `${safeName}.ts`);
|
|
49415
|
-
|
|
49416
|
-
await Bun.write(entryPath, source);
|
|
49419
|
+
await Bun.write(entryPath, generateVendorEntrySource(specifier));
|
|
49417
49420
|
return entryPath;
|
|
49418
49421
|
}));
|
|
49419
49422
|
return bunBuild8({
|
|
@@ -49851,5 +49854,5 @@ export {
|
|
|
49851
49854
|
build
|
|
49852
49855
|
};
|
|
49853
49856
|
|
|
49854
|
-
//# debugId=
|
|
49857
|
+
//# debugId=1D72847973D2433A64756E2164756E21
|
|
49855
49858
|
//# sourceMappingURL=build.js.map
|