@absolutejs/absolute 0.19.0-beta.810 → 0.19.0-beta.811
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 +7 -3
- package/dist/build.js.map +3 -3
- package/dist/cli/index.js +25 -0
- package/dist/index.js +7 -3
- package/dist/index.js.map +4 -4
- package/dist/src/cli/scripts/workspace.d.ts +5 -0
- package/dist/src/utils/defineConfig.d.ts +24 -1
- package/package.json +7 -7
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// @bun
|
|
2
2
|
var __require = import.meta.require;
|
|
3
3
|
|
|
4
|
-
// .angular-partial-tmp-
|
|
4
|
+
// .angular-partial-tmp-BrsDXP/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-BrsDXP/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-BrsDXP/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
|
@@ -12321,14 +12321,14 @@ import { mkdirSync as mkdirSync7 } from "fs";
|
|
|
12321
12321
|
import { join as join18 } from "path";
|
|
12322
12322
|
import { rm as rm6 } from "fs/promises";
|
|
12323
12323
|
var {build: bunBuild3, Glob: Glob6 } = globalThis.Bun;
|
|
12324
|
-
var REQUIRED_ANGULAR_SPECIFIERS_BASE, requiredAngularSpecifiers = (jitMode) => jitMode ? [...REQUIRED_ANGULAR_SPECIFIERS_BASE, "@angular/compiler"] : REQUIRED_ANGULAR_SPECIFIERS_BASE, SERVER_ONLY_ANGULAR_SPECIFIERS, SCAN_SKIP_DIRS, isResolvable2 = (specifier) => {
|
|
12324
|
+
var REQUIRED_ANGULAR_SPECIFIERS_BASE, requiredAngularSpecifiers = (jitMode) => jitMode ? [...REQUIRED_ANGULAR_SPECIFIERS_BASE, "@angular/compiler"] : REQUIRED_ANGULAR_SPECIFIERS_BASE, SERVER_ONLY_ANGULAR_SPECIFIERS, BUILD_ONLY_ANGULAR_SPECIFIER_PREFIXES, isBuildOnlyAngularSpecifier = (spec) => BUILD_ONLY_ANGULAR_SPECIFIER_PREFIXES.some((prefix) => spec === prefix || spec.startsWith(`${prefix}/`)), SCAN_SKIP_DIRS, isResolvable2 = (specifier) => {
|
|
12325
12325
|
try {
|
|
12326
12326
|
Bun.resolveSync(specifier, process.cwd());
|
|
12327
12327
|
return true;
|
|
12328
12328
|
} catch {
|
|
12329
12329
|
return false;
|
|
12330
12330
|
}
|
|
12331
|
-
}, isBareSpecifier = (spec) => !spec.startsWith(".") && !spec.startsWith("/") && !spec.startsWith("@src/"), isAngularBrowserSpecifier = (spec) => spec.startsWith("@angular/") && !SERVER_ONLY_ANGULAR_SPECIFIERS.has(spec), scanSourceImports = async (directories) => {
|
|
12331
|
+
}, isBareSpecifier = (spec) => !spec.startsWith(".") && !spec.startsWith("/") && !spec.startsWith("@src/"), isAngularBrowserSpecifier = (spec) => spec.startsWith("@angular/") && !SERVER_ONLY_ANGULAR_SPECIFIERS.has(spec) && !isBuildOnlyAngularSpecifier(spec), scanSourceImports = async (directories) => {
|
|
12332
12332
|
const angular = new Set;
|
|
12333
12333
|
const transitiveRoots = new Set;
|
|
12334
12334
|
const transpiler4 = new Bun.Transpiler({ loader: "tsx" });
|
|
@@ -12515,6 +12515,10 @@ var init_buildAngularVendor = __esm(() => {
|
|
|
12515
12515
|
"@angular/platform-server",
|
|
12516
12516
|
"@angular/ssr"
|
|
12517
12517
|
]);
|
|
12518
|
+
BUILD_ONLY_ANGULAR_SPECIFIER_PREFIXES = [
|
|
12519
|
+
"@angular/compiler-cli",
|
|
12520
|
+
"@angular/localize/tools"
|
|
12521
|
+
];
|
|
12518
12522
|
SCAN_SKIP_DIRS = new Set([
|
|
12519
12523
|
"node_modules",
|
|
12520
12524
|
"build",
|
|
@@ -18145,5 +18149,5 @@ export {
|
|
|
18145
18149
|
build
|
|
18146
18150
|
};
|
|
18147
18151
|
|
|
18148
|
-
//# debugId=
|
|
18152
|
+
//# debugId=58B6E34D3C5D015364756E2164756E21
|
|
18149
18153
|
//# sourceMappingURL=build.js.map
|