@absolutejs/absolute 0.19.0-beta.1085 → 0.19.0-beta.1086
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/index.js
CHANGED
|
@@ -24330,13 +24330,14 @@ if (typeof __VUE_HMR_RUNTIME__ !== 'undefined') {
|
|
|
24330
24330
|
await Promise.all(Array.from(allTsHelperPaths).map(async (tsPath) => {
|
|
24331
24331
|
const sourceCode = await file3(tsPath).text();
|
|
24332
24332
|
const transpiledCode = transpiler4.transformSync(sourceCode);
|
|
24333
|
+
const withMap = transpiledCode + inlineLineMapComment(tsPath, sourceCode, transpiledCode);
|
|
24333
24334
|
const relativeJsPath = relative11(vueRootDir, tsPath).replace(/\.ts$/, ".js");
|
|
24334
24335
|
const outClientPath = join33(clientOutputDir, relativeJsPath);
|
|
24335
24336
|
const outServerPath = join33(serverOutputDir, relativeJsPath);
|
|
24336
24337
|
await mkdir6(dirname16(outClientPath), { recursive: true });
|
|
24337
24338
|
await mkdir6(dirname16(outServerPath), { recursive: true });
|
|
24338
|
-
await write3(outClientPath,
|
|
24339
|
-
await write3(outServerPath,
|
|
24339
|
+
await write3(outClientPath, withMap);
|
|
24340
|
+
await write3(outServerPath, withMap);
|
|
24340
24341
|
}));
|
|
24341
24342
|
const isString = (value) => value !== null;
|
|
24342
24343
|
const vueSpaRoutesBySource = new Map;
|
|
@@ -47084,5 +47085,5 @@ export {
|
|
|
47084
47085
|
ANGULAR_INIT_TIMEOUT_MS
|
|
47085
47086
|
};
|
|
47086
47087
|
|
|
47087
|
-
//# debugId=
|
|
47088
|
+
//# debugId=3B1B82477E3C141D64756E2164756E21
|
|
47088
47089
|
//# sourceMappingURL=index.js.map
|