@absolutejs/absolute 0.19.0-beta.817 → 0.19.0-beta.819
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.
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// @bun
|
|
2
2
|
var __require = import.meta.require;
|
|
3
3
|
|
|
4
|
-
// .angular-partial-tmp-
|
|
4
|
+
// .angular-partial-tmp-ZCh5Bm/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-ZCh5Bm/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-ZCh5Bm/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
|
@@ -10243,7 +10243,7 @@ var resolveDevClientDir3 = () => {
|
|
|
10243
10243
|
return filePath;
|
|
10244
10244
|
}
|
|
10245
10245
|
return `${filePath}.js`;
|
|
10246
|
-
}, stripExports = (code) => code.replace(/export\s+default/, "const script =")
|
|
10246
|
+
}, stripExports = (code) => code.replace(/export\s+default/, "const script ="), mergeVueImports = (code) => {
|
|
10247
10247
|
const lines = code.split(`
|
|
10248
10248
|
`);
|
|
10249
10249
|
const specifierSet = new Set;
|
|
@@ -13768,6 +13768,7 @@ ${content.slice(firstUseIdx)}`;
|
|
|
13768
13768
|
"@angular/*",
|
|
13769
13769
|
"typescript"
|
|
13770
13770
|
];
|
|
13771
|
+
const svelteResolveConditions = svelteDir ? ["svelte", "main"] : undefined;
|
|
13771
13772
|
const htmlScriptPlugin = hmr ? createHTMLScriptHMRPlugin(htmlDir, htmxDir) : undefined;
|
|
13772
13773
|
const reactBuildConfig = reactClientEntryPoints.length > 0 ? mergeBunBuildConfig({
|
|
13773
13774
|
entrypoints: reactClientEntryPoints,
|
|
@@ -13813,6 +13814,7 @@ ${content.slice(firstUseIdx)}`;
|
|
|
13813
13814
|
vueCssResult
|
|
13814
13815
|
] = await Promise.all([
|
|
13815
13816
|
serverEntryPoints.length > 0 ? tracePhase("bun/server", () => bunBuild6(mergeBunBuildConfig({
|
|
13817
|
+
conditions: svelteResolveConditions,
|
|
13816
13818
|
entrypoints: serverEntryPoints,
|
|
13817
13819
|
external: serverBuildExternals,
|
|
13818
13820
|
format: "esm",
|
|
@@ -13826,6 +13828,7 @@ ${content.slice(firstUseIdx)}`;
|
|
|
13826
13828
|
}, resolveBunBuildOverride(bunBuildConfig, "server")))) : undefined,
|
|
13827
13829
|
reactBuildConfig ? tracePhase("bun/react-client", () => bunBuild6(reactBuildConfig)) : undefined,
|
|
13828
13830
|
nonReactClientEntryPoints.length > 0 ? tracePhase("bun/non-react-client", () => bunBuild6(mergeBunBuildConfig({
|
|
13831
|
+
conditions: svelteResolveConditions,
|
|
13829
13832
|
define: vueDirectory ? vueFeatureFlags : undefined,
|
|
13830
13833
|
entrypoints: nonReactClientEntryPoints,
|
|
13831
13834
|
external: Object.keys(nonReactExternalPaths),
|
|
@@ -13845,6 +13848,7 @@ ${content.slice(firstUseIdx)}`;
|
|
|
13845
13848
|
tsconfig: "./tsconfig.json"
|
|
13846
13849
|
}, resolveBunBuildOverride(bunBuildConfig, "nonReactClient")))) : undefined,
|
|
13847
13850
|
islandClientEntryPoints.length > 0 ? tracePhase("bun/island-client", () => bunBuild6(mergeBunBuildConfig({
|
|
13851
|
+
conditions: svelteResolveConditions,
|
|
13848
13852
|
define: vueDirectory ? vueFeatureFlags : undefined,
|
|
13849
13853
|
entrypoints: islandClientEntryPoints,
|
|
13850
13854
|
external: Object.keys(nonReactExternalPaths),
|
|
@@ -18208,5 +18212,5 @@ export {
|
|
|
18208
18212
|
build
|
|
18209
18213
|
};
|
|
18210
18214
|
|
|
18211
|
-
//# debugId=
|
|
18215
|
+
//# debugId=BA7E22ECD19B65D964756E2164756E21
|
|
18212
18216
|
//# sourceMappingURL=build.js.map
|