@absolutejs/absolute 0.19.0-beta.1003 → 0.19.0-beta.1005
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
|
}
|
|
@@ -23211,6 +23215,10 @@ ${code}`;
|
|
|
23211
23215
|
${templateResult.code}`;
|
|
23212
23216
|
code += `
|
|
23213
23217
|
__script__.render = render;`;
|
|
23218
|
+
if (isScoped) {
|
|
23219
|
+
code += `
|
|
23220
|
+
__script__.__scopeId = "data-v-${componentId}";`;
|
|
23221
|
+
}
|
|
23214
23222
|
code += `
|
|
23215
23223
|
export default __script__;`;
|
|
23216
23224
|
return code;
|
|
@@ -35745,5 +35753,5 @@ export {
|
|
|
35745
35753
|
ANGULAR_INIT_TIMEOUT_MS
|
|
35746
35754
|
};
|
|
35747
35755
|
|
|
35748
|
-
//# debugId=
|
|
35756
|
+
//# debugId=3E6A7953FB88231F64756E2164756E21
|
|
35749
35757
|
//# sourceMappingURL=index.js.map
|