@absolutejs/absolute 0.19.0-beta.1133 → 0.19.0-beta.1135
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/components/core/streamingSlotRegistrar.js +1 -1
- package/dist/angular/components/core/streamingSlotRegistry.js +2 -2
- package/dist/build.js +6 -2
- package/dist/build.js.map +3 -3
- package/dist/cli/index.js +109 -108
- package/dist/index.js +6 -2
- package/dist/index.js.map +3 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -24442,7 +24442,11 @@ var resolveDevClientDir3 = () => {
|
|
|
24442
24442
|
return "template-only";
|
|
24443
24443
|
}
|
|
24444
24444
|
return "full";
|
|
24445
|
-
}, generateVueHmrId = (sourceFilePath, vueRootDir) => relative12(vueRootDir, sourceFilePath).replace(/\\/g, "/").replace(/\.vue$/, ""), extractImports = (sourceCode) =>
|
|
24445
|
+
}, generateVueHmrId = (sourceFilePath, vueRootDir) => relative12(vueRootDir, sourceFilePath).replace(/\\/g, "/").replace(/\.vue$/, ""), extractImports = (sourceCode) => {
|
|
24446
|
+
const staticImports = Array.from(sourceCode.matchAll(/import\s+[\s\S]+?['"]([^'"]+)['"]/g));
|
|
24447
|
+
const dynamicImports = Array.from(sourceCode.matchAll(/\bimport\s*\(\s*['"]([^'"]+)['"]\s*\)/g));
|
|
24448
|
+
return Array.from(new Set([...staticImports, ...dynamicImports].map((match) => match[1]).filter((importPath) => importPath !== undefined)));
|
|
24449
|
+
}, inlineCssImports = (cssContent, cssFilePath, visited = new Set) => {
|
|
24446
24450
|
const resolved = realpathSync2(cssFilePath);
|
|
24447
24451
|
if (visited.has(resolved))
|
|
24448
24452
|
return "";
|
|
@@ -48053,5 +48057,5 @@ export {
|
|
|
48053
48057
|
ANGULAR_INIT_TIMEOUT_MS
|
|
48054
48058
|
};
|
|
48055
48059
|
|
|
48056
|
-
//# debugId=
|
|
48060
|
+
//# debugId=88949C66DC8CD93664756E2164756E21
|
|
48057
48061
|
//# sourceMappingURL=index.js.map
|