@absolutejs/absolute 0.19.0-beta.312 → 0.19.0-beta.314
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 +4 -2
- package/dist/build.js.map +3 -3
- package/dist/cli/index.js +127 -10
- package/dist/index.js +4 -2
- package/dist/index.js.map +3 -3
- package/package.json +1 -1
package/dist/build.js
CHANGED
|
@@ -528,8 +528,10 @@ var normalizeImportPath2 = (fromFile, targetFile) => {
|
|
|
528
528
|
const sharedDtsTarget = resolve2(dirname2(resolvedRegistryPath), "absolute-islands.d.ts");
|
|
529
529
|
const buildRegistryAugmentation = (registryImportPath, moduleBody) => `import type { islandRegistry } from ${JSON.stringify(registryImportPath)};
|
|
530
530
|
|
|
531
|
+
` + `type GeneratedAbsoluteIslandRegistry = typeof islandRegistry;
|
|
532
|
+
|
|
531
533
|
` + `declare global {
|
|
532
|
-
interface AbsoluteIslandRegistry extends
|
|
534
|
+
interface AbsoluteIslandRegistry extends GeneratedAbsoluteIslandRegistry {}
|
|
533
535
|
}
|
|
534
536
|
|
|
535
537
|
` + (moduleBody ? `${moduleBody}
|
|
@@ -208059,5 +208061,5 @@ export {
|
|
|
208059
208061
|
build
|
|
208060
208062
|
};
|
|
208061
208063
|
|
|
208062
|
-
//# debugId=
|
|
208064
|
+
//# debugId=7270DE63D0B7E96864756E2164756E21
|
|
208063
208065
|
//# sourceMappingURL=build.js.map
|