@absolutejs/absolute 0.20.0-beta.27 → 0.20.0-beta.29
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/angular/components/core/streamingSlotRegistrar.js +1 -1
- package/dist/angular/components/core/streamingSlotRegistry.js +2 -2
- package/dist/build.js +4 -2
- package/dist/build.js.map +3 -3
- package/dist/cli/index.js +69 -3
- package/dist/dev/client/hmrClient.ts +23 -0
- package/dist/index.js +94 -32
- package/dist/index.js.map +7 -6
- package/dist/mobile/index.js +134 -40
- package/dist/mobile/index.js.map +7 -6
- package/dist/mobile/shellBootstrap.js +12 -0
- package/dist/src/core/devBuild.d.ts +1 -0
- package/dist/src/core/prepare.d.ts +24 -0
- package/dist/src/mobile/androidUpgradeConformance.d.ts +47 -0
- package/dist/src/mobile/androidWebView.d.ts +1 -0
- package/dist/src/mobile/devDeviceAdapter.d.ts +3 -0
- package/dist/src/mobile/index.d.ts +1 -0
- package/dist/src/mobile/nativeTestReport.d.ts +3 -10
- package/package.json +2 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// @bun
|
|
2
2
|
var __require = import.meta.require;
|
|
3
3
|
|
|
4
|
-
// .angular-partial-tmp-
|
|
4
|
+
// .angular-partial-tmp-iocRFr/src/core/streamingSlotRegistrar.ts
|
|
5
5
|
var STREAMING_SLOT_REGISTRAR_KEY = Symbol.for("absolutejs.streamingSlotRegistrar");
|
|
6
6
|
var STREAMING_SLOT_WARNING_STORAGE_KEY = Symbol.for("absolutejs.streamingSlotWarningController");
|
|
7
7
|
var STREAMING_SLOT_COLLECTION_STORAGE_KEY = Symbol.for("absolutejs.streamingSlotCollectionController");
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// @bun
|
|
2
2
|
var __require = import.meta.require;
|
|
3
3
|
|
|
4
|
-
// .angular-partial-tmp-
|
|
4
|
+
// .angular-partial-tmp-iocRFr/src/core/streamingSlotRegistrar.ts
|
|
5
5
|
var STREAMING_SLOT_REGISTRAR_KEY = Symbol.for("absolutejs.streamingSlotRegistrar");
|
|
6
6
|
var STREAMING_SLOT_WARNING_STORAGE_KEY = Symbol.for("absolutejs.streamingSlotWarningController");
|
|
7
7
|
var STREAMING_SLOT_COLLECTION_STORAGE_KEY = Symbol.for("absolutejs.streamingSlotCollectionController");
|
|
@@ -48,7 +48,7 @@ var warnMissingStreamingSlotCollector = (primitiveName) => {
|
|
|
48
48
|
getWarningController()?.maybeWarn(primitiveName);
|
|
49
49
|
};
|
|
50
50
|
|
|
51
|
-
// .angular-partial-tmp-
|
|
51
|
+
// .angular-partial-tmp-iocRFr/src/core/streamingSlotRegistry.ts
|
|
52
52
|
var STREAMING_SLOT_STORAGE_KEY = Symbol.for("absolutejs.streamingSlotAsyncLocalStorage");
|
|
53
53
|
var isObjectRecord2 = (value) => Boolean(value) && typeof value === "object";
|
|
54
54
|
var isAsyncLocalStorage = (value) => isObjectRecord2(value) && ("getStore" in value) && typeof value.getStore === "function" && ("run" in value) && typeof value.run === "function";
|
package/dist/build.js
CHANGED
|
@@ -29893,6 +29893,7 @@ var init_buildDepVendor = __esm(() => {
|
|
|
29893
29893
|
var exports_devBuild = {};
|
|
29894
29894
|
__export(exports_devBuild, {
|
|
29895
29895
|
devBuild: () => devBuild,
|
|
29896
|
+
collectDepVendorSourceDirs: () => collectDepVendorSourceDirs,
|
|
29896
29897
|
applyConfigChanges: () => applyConfigChanges
|
|
29897
29898
|
});
|
|
29898
29899
|
import { readdir as readdir5 } from "fs/promises";
|
|
@@ -29905,7 +29906,8 @@ var FRAMEWORK_DIR_KEYS, collectDepVendorSourceDirs = (config) => {
|
|
|
29905
29906
|
config.vueDirectory,
|
|
29906
29907
|
config.angularDirectory,
|
|
29907
29908
|
config.htmlDirectory,
|
|
29908
|
-
config.htmxDirectory
|
|
29909
|
+
config.htmxDirectory,
|
|
29910
|
+
resolve44(import.meta.dir, "../dev/client")
|
|
29909
29911
|
].filter((dir) => Boolean(dir));
|
|
29910
29912
|
return Array.from(new Set(configuredDirs));
|
|
29911
29913
|
}, parseDirectoryConfig = (source) => {
|
|
@@ -30354,5 +30356,5 @@ export {
|
|
|
30354
30356
|
build
|
|
30355
30357
|
};
|
|
30356
30358
|
|
|
30357
|
-
//# debugId=
|
|
30359
|
+
//# debugId=77BBF44144F0D79F64756E2164756E21
|
|
30358
30360
|
//# sourceMappingURL=build.js.map
|