@absolutejs/absolute 0.19.0-beta.384 → 0.19.0-beta.385
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/index.js +2 -2
- package/dist/angular/index.js.map +1 -1
- package/dist/angular/server.js +2 -2
- package/dist/angular/server.js.map +1 -1
- package/dist/build.js +3 -5
- package/dist/build.js.map +3 -3
- package/dist/index.js +3 -5
- package/dist/index.js.map +3 -3
- package/package.json +1 -1
package/dist/build.js
CHANGED
|
@@ -172650,7 +172650,7 @@ ${registrations}
|
|
|
172650
172650
|
({ tsLibDir } = cached);
|
|
172651
172651
|
cached.lastUsed = Date.now();
|
|
172652
172652
|
} else {
|
|
172653
|
-
const tsPath = __require.resolve("typescript");
|
|
172653
|
+
const tsPath = __require.resolve("/home/alexkahn/abs/absolutejs/node_modules/typescript/lib/typescript.js");
|
|
172654
172654
|
const tsRootDir = dirname8(tsPath);
|
|
172655
172655
|
tsLibDir = tsRootDir.endsWith("lib") ? tsRootDir : resolve15(tsRootDir, "lib");
|
|
172656
172656
|
const config = readConfiguration("./tsconfig.json");
|
|
@@ -173650,9 +173650,7 @@ var isDev, collectConventionSourceFiles = (entry) => {
|
|
|
173650
173650
|
const indexFile = join18(svelteIndexDir, "pages", `${name}.js`);
|
|
173651
173651
|
if (!existsSync16(indexFile))
|
|
173652
173652
|
continue;
|
|
173653
|
-
|
|
173654
|
-
const srcRel = relative9(process.cwd(), resolve16(entry)).replace(/\\/g, "/");
|
|
173655
|
-
content = content.replace(/import\s+Component\s+from\s+['"]([^'"]+)['"]/, `import Component from "/@src/${srcRel}"`);
|
|
173653
|
+
const content = readFileSync9(indexFile, "utf-8");
|
|
173656
173654
|
writeFileSync7(join18(devIndexDir, `${name}.svelte.js`), content);
|
|
173657
173655
|
}
|
|
173658
173656
|
}, copyVueDevIndexes = (vueDir, vuePagesPath, vueEntries, devIndexDir) => {
|
|
@@ -179186,5 +179184,5 @@ export {
|
|
|
179186
179184
|
build
|
|
179187
179185
|
};
|
|
179188
179186
|
|
|
179189
|
-
//# debugId=
|
|
179187
|
+
//# debugId=C163B4D2E7D0A6FE64756E2164756E21
|
|
179190
179188
|
//# sourceMappingURL=build.js.map
|