@absolutejs/absolute 0.19.0-beta.1085 → 0.19.0-beta.1087
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 -3
- package/dist/build.js.map +3 -3
- package/dist/index.js +4 -3
- package/dist/index.js.map +3 -3
- package/dist/types/vue.d.ts +10 -15
- package/package.json +7 -2
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// @bun
|
|
2
2
|
var __require = import.meta.require;
|
|
3
3
|
|
|
4
|
-
// .angular-partial-tmp-
|
|
4
|
+
// .angular-partial-tmp-jAiQOp/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-jAiQOp/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-jAiQOp/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
|
@@ -14236,13 +14236,14 @@ if (typeof __VUE_HMR_RUNTIME__ !== 'undefined') {
|
|
|
14236
14236
|
await Promise.all(Array.from(allTsHelperPaths).map(async (tsPath) => {
|
|
14237
14237
|
const sourceCode = await file2(tsPath).text();
|
|
14238
14238
|
const transpiledCode = transpiler4.transformSync(sourceCode);
|
|
14239
|
+
const withMap = transpiledCode + inlineLineMapComment(tsPath, sourceCode, transpiledCode);
|
|
14239
14240
|
const relativeJsPath = relative11(vueRootDir, tsPath).replace(/\.ts$/, ".js");
|
|
14240
14241
|
const outClientPath = join29(clientOutputDir, relativeJsPath);
|
|
14241
14242
|
const outServerPath = join29(serverOutputDir, relativeJsPath);
|
|
14242
14243
|
await mkdir6(dirname14(outClientPath), { recursive: true });
|
|
14243
14244
|
await mkdir6(dirname14(outServerPath), { recursive: true });
|
|
14244
|
-
await write3(outClientPath,
|
|
14245
|
-
await write3(outServerPath,
|
|
14245
|
+
await write3(outClientPath, withMap);
|
|
14246
|
+
await write3(outServerPath, withMap);
|
|
14246
14247
|
}));
|
|
14247
14248
|
const isString = (value) => value !== null;
|
|
14248
14249
|
const vueSpaRoutesBySource = new Map;
|
|
@@ -28046,5 +28047,5 @@ export {
|
|
|
28046
28047
|
build
|
|
28047
28048
|
};
|
|
28048
28049
|
|
|
28049
|
-
//# debugId=
|
|
28050
|
+
//# debugId=DEE26AA869F54FE864756E2164756E21
|
|
28050
28051
|
//# sourceMappingURL=build.js.map
|