@absolutejs/absolute 0.19.0-beta.1003 → 0.19.0-beta.1004
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
|
@@ -20993,6 +20993,7 @@ ${content.slice(firstUseIdx)}`;
|
|
|
20993
20993
|
cssByName.set(cssName, artifact);
|
|
20994
20994
|
}
|
|
20995
20995
|
const fsPromises = await import("fs/promises");
|
|
20996
|
+
const siblingCssPaths = [];
|
|
20996
20997
|
await Promise.all(serverOutputs.map(async (artifact) => {
|
|
20997
20998
|
if (extname8(artifact.path) !== ".js")
|
|
20998
20999
|
return;
|
|
@@ -21004,6 +21005,8 @@ ${content.slice(firstUseIdx)}`;
|
|
|
21004
21005
|
return;
|
|
21005
21006
|
const siblingCssPath = artifact.path.replace(/\.js$/, ".css");
|
|
21006
21007
|
await fsPromises.copyFile(cssArtifact.path, siblingCssPath);
|
|
21008
|
+
siblingCssPaths.push(siblingCssPath);
|
|
21009
|
+
manifest[`${pascalName}Css`] = siblingCssPath;
|
|
21007
21010
|
}));
|
|
21008
21011
|
for (const serverPath of emberServerPaths) {
|
|
21009
21012
|
const fileBase = basename11(serverPath, ".js");
|
|
@@ -21099,6 +21102,7 @@ ${content.slice(firstUseIdx)}`;
|
|
|
21099
21102
|
...nonReactClientOutputs.map((a) => a.path),
|
|
21100
21103
|
...islandClientOutputs.map((a) => a.path),
|
|
21101
21104
|
...cssOutputs.map((a) => a.path),
|
|
21105
|
+
...siblingCssPaths,
|
|
21102
21106
|
...conventionOutputPaths
|
|
21103
21107
|
]));
|
|
21104
21108
|
}
|
|
@@ -35745,5 +35749,5 @@ export {
|
|
|
35745
35749
|
ANGULAR_INIT_TIMEOUT_MS
|
|
35746
35750
|
};
|
|
35747
35751
|
|
|
35748
|
-
//# debugId=
|
|
35752
|
+
//# debugId=CA144ECF7D56382464756E2164756E21
|
|
35749
35753
|
//# sourceMappingURL=index.js.map
|