@absolutejs/absolute 0.18.3-beta.7 → 0.18.3-beta.9
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/.absolutejs/prettier.cache.json +3 -3
- package/.absolutejs/tsconfig.tsbuildinfo +1 -1
- package/dist/build.js +4 -1
- package/dist/build.js.map +3 -3
- package/dist/index.js +29 -2
- package/dist/index.js.map +4 -4
- package/dist/react/index.js +26 -2
- package/dist/react/index.js.map +3 -3
- package/package.json +1 -2
- package/types/globals.d.ts +4 -0
package/dist/build.js
CHANGED
|
@@ -173716,6 +173716,9 @@ var FRAMEWORK_DIR_KEYS, reloadConfig = async () => {
|
|
|
173716
173716
|
await buildReactVendor(state.resolvedPaths.buildDir);
|
|
173717
173717
|
const vendorDir = resolve19(state.resolvedPaths.buildDir, "react", "vendor");
|
|
173718
173718
|
await loadVendorFiles(state.assetStore, vendorDir, "react");
|
|
173719
|
+
if (!globalThis.__reactModuleRef) {
|
|
173720
|
+
globalThis.__reactModuleRef = await import("react");
|
|
173721
|
+
}
|
|
173719
173722
|
}
|
|
173720
173723
|
if (config.angularDirectory) {
|
|
173721
173724
|
await buildAngularVendor(state.resolvedPaths.buildDir);
|
|
@@ -173768,5 +173771,5 @@ export {
|
|
|
173768
173771
|
build
|
|
173769
173772
|
};
|
|
173770
173773
|
|
|
173771
|
-
//# debugId=
|
|
173774
|
+
//# debugId=1F269857F58E64E164756E2164756E21
|
|
173772
173775
|
//# sourceMappingURL=build.js.map
|