@absolutejs/absolute 0.18.3-beta.11 → 0.18.3-beta.12
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 +20 -14
- package/dist/build.js.map +5 -4
- package/dist/index.js +46 -36
- package/dist/index.js.map +6 -5
- package/dist/react/index.js +44 -1
- package/dist/react/index.js.map +5 -4
- package/dist/src/react/bridgeInternals.d.ts +1 -0
- package/package.json +1 -1
package/dist/build.js
CHANGED
|
@@ -173544,14 +173544,7 @@ var init_rebuildTrigger = __esm(() => {
|
|
|
173544
173544
|
init_webSocket();
|
|
173545
173545
|
});
|
|
173546
173546
|
|
|
173547
|
-
// src/
|
|
173548
|
-
var exports_devBuild = {};
|
|
173549
|
-
__export(exports_devBuild, {
|
|
173550
|
-
devBuild: () => devBuild
|
|
173551
|
-
});
|
|
173552
|
-
import { readdir as readdir2 } from "fs/promises";
|
|
173553
|
-
import { statSync } from "fs";
|
|
173554
|
-
import { resolve as resolve19 } from "path";
|
|
173547
|
+
// src/react/bridgeInternals.ts
|
|
173555
173548
|
var INTERNALS_KEYS, findInternals = (mod) => {
|
|
173556
173549
|
for (const key of INTERNALS_KEYS) {
|
|
173557
173550
|
const val = mod[key];
|
|
@@ -173582,7 +173575,23 @@ var INTERNALS_KEYS, findInternals = (mod) => {
|
|
|
173582
173575
|
enumerable: true
|
|
173583
173576
|
});
|
|
173584
173577
|
}
|
|
173585
|
-
}
|
|
173578
|
+
};
|
|
173579
|
+
var init_bridgeInternals = __esm(() => {
|
|
173580
|
+
INTERNALS_KEYS = [
|
|
173581
|
+
"__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE",
|
|
173582
|
+
"__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED"
|
|
173583
|
+
];
|
|
173584
|
+
});
|
|
173585
|
+
|
|
173586
|
+
// src/core/devBuild.ts
|
|
173587
|
+
var exports_devBuild = {};
|
|
173588
|
+
__export(exports_devBuild, {
|
|
173589
|
+
devBuild: () => devBuild
|
|
173590
|
+
});
|
|
173591
|
+
import { readdir as readdir2 } from "fs/promises";
|
|
173592
|
+
import { statSync } from "fs";
|
|
173593
|
+
import { resolve as resolve19 } from "path";
|
|
173594
|
+
var FRAMEWORK_DIR_KEYS, reloadConfig = async () => {
|
|
173586
173595
|
try {
|
|
173587
173596
|
const configPath2 = resolve19(process.env.ABSOLUTE_CONFIG ?? "absolute.config.ts");
|
|
173588
173597
|
const source = await Bun.file(configPath2).text();
|
|
@@ -173786,10 +173795,7 @@ var init_devBuild = __esm(() => {
|
|
|
173786
173795
|
init_assetStore();
|
|
173787
173796
|
init_rebuildTrigger();
|
|
173788
173797
|
init_logger();
|
|
173789
|
-
|
|
173790
|
-
"__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE",
|
|
173791
|
-
"__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED"
|
|
173792
|
-
];
|
|
173798
|
+
init_bridgeInternals();
|
|
173793
173799
|
FRAMEWORK_DIR_KEYS = [
|
|
173794
173800
|
"reactDirectory",
|
|
173795
173801
|
"svelteDirectory",
|
|
@@ -173808,5 +173814,5 @@ export {
|
|
|
173808
173814
|
build
|
|
173809
173815
|
};
|
|
173810
173816
|
|
|
173811
|
-
//# debugId=
|
|
173817
|
+
//# debugId=06783D7A3151535164756E2164756E21
|
|
173812
173818
|
//# sourceMappingURL=build.js.map
|