@absolutejs/absolute 0.19.0-beta.762 → 0.19.0-beta.763
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 +6 -4
- package/dist/angular/index.js.map +3 -3
- package/dist/angular/server.js +6 -4
- package/dist/angular/server.js.map +3 -3
- package/dist/build.js +6 -4
- package/dist/build.js.map +3 -3
- package/dist/index.js +6 -4
- package/dist/index.js.map +3 -3
- package/package.json +7 -7
package/dist/build.js
CHANGED
|
@@ -43751,7 +43751,9 @@ ${registrations}
|
|
|
43751
43751
|
return;
|
|
43752
43752
|
const source = await readFileForAotTransform(resolvedPath, readFile4);
|
|
43753
43753
|
const transformed = await inlineResources(source, dirname10(resolvedPath), stylePreprocessors);
|
|
43754
|
-
|
|
43754
|
+
if (transformed.source !== source) {
|
|
43755
|
+
transformedSources.set(resolvedPath, transformed.source);
|
|
43756
|
+
}
|
|
43755
43757
|
const imports = extractLocalImportSpecifiers(source, resolvedPath);
|
|
43756
43758
|
await Promise.all(imports.map(async (specifier) => {
|
|
43757
43759
|
const resolvedImport = resolveLocalTsImport(resolvedPath, specifier);
|
|
@@ -43834,8 +43836,8 @@ ${registrations}
|
|
|
43834
43836
|
};
|
|
43835
43837
|
const originalGetSourceFileForCompile = host.getSourceFile;
|
|
43836
43838
|
host.getSourceFile = (fileName, languageVersion, onError2) => {
|
|
43837
|
-
const source =
|
|
43838
|
-
if (
|
|
43839
|
+
const source = aotTransformedSources.get(resolve16(fileName));
|
|
43840
|
+
if (source) {
|
|
43839
43841
|
return ts2.createSourceFile(fileName, source, languageVersion, true);
|
|
43840
43842
|
}
|
|
43841
43843
|
return originalGetSourceFileForCompile?.call(host, fileName, languageVersion, onError2);
|
|
@@ -50213,5 +50215,5 @@ export {
|
|
|
50213
50215
|
build
|
|
50214
50216
|
};
|
|
50215
50217
|
|
|
50216
|
-
//# debugId=
|
|
50218
|
+
//# debugId=ECE7852F36128E8064756E2164756E21
|
|
50217
50219
|
//# sourceMappingURL=build.js.map
|