@absolutejs/absolute 0.19.0-beta.1093 → 0.19.0-beta.1094
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
|
@@ -37762,6 +37762,7 @@ __export(exports_buildDepVendor, {
|
|
|
37762
37762
|
buildDepVendor: () => buildDepVendor
|
|
37763
37763
|
});
|
|
37764
37764
|
import { mkdirSync as mkdirSync14 } from "fs";
|
|
37765
|
+
import { isBuiltin } from "module";
|
|
37765
37766
|
import { join as join46 } from "path";
|
|
37766
37767
|
import { rm as rm10 } from "fs/promises";
|
|
37767
37768
|
var {build: bunBuild9, Glob: Glob10 } = globalThis.Bun;
|
|
@@ -37780,7 +37781,7 @@ var toSafeFileName6 = (specifier) => {
|
|
|
37780
37781
|
} catch {
|
|
37781
37782
|
return false;
|
|
37782
37783
|
}
|
|
37783
|
-
}, isBareSpecifier2 = (spec) => !spec.startsWith(".") && !spec.startsWith("/") && !spec.startsWith("@src/"), isAbsolutePackageSpecifier = (spec) => spec === "@absolutejs/absolute" || spec.startsWith("@absolutejs/absolute/"), FRAMEWORK_SPECIFIERS, FRAMEWORK_NAMESPACE_PREFIXES, isFrameworkSpecifier = (spec) => FRAMEWORK_SPECIFIERS.has(spec) || FRAMEWORK_NAMESPACE_PREFIXES.some((prefix) => spec.startsWith(prefix)), FRAMEWORK_EXTERNALS, isSkippedFile = (file5) => file5.includes("node_modules") || file5.includes("/build/") || file5.includes("/dist/") || file5.includes("/indexes/"), isDepSpecifier = (path) => isBareSpecifier2(path) && !isFrameworkSpecifier(path) && !isAbsolutePackageSpecifier(path), isFrameworkRootCandidate = (path) => isBareSpecifier2(path) && isFrameworkSpecifier(path) && !isAbsolutePackageSpecifier(path), readFileSpecifiers = async (file5, transpiler6) => {
|
|
37784
|
+
}, isBareSpecifier2 = (spec) => !spec.startsWith(".") && !spec.startsWith("/") && !spec.startsWith("@src/"), isAbsolutePackageSpecifier = (spec) => spec === "@absolutejs/absolute" || spec.startsWith("@absolutejs/absolute/"), FRAMEWORK_SPECIFIERS, FRAMEWORK_NAMESPACE_PREFIXES, isFrameworkSpecifier = (spec) => FRAMEWORK_SPECIFIERS.has(spec) || FRAMEWORK_NAMESPACE_PREFIXES.some((prefix) => spec.startsWith(prefix)), FRAMEWORK_EXTERNALS, isSkippedFile = (file5) => file5.includes("node_modules") || file5.includes("/build/") || file5.includes("/dist/") || file5.includes("/indexes/"), isDepSpecifier = (path) => isBareSpecifier2(path) && !isBuiltin(path) && !isFrameworkSpecifier(path) && !isAbsolutePackageSpecifier(path), isFrameworkRootCandidate = (path) => isBareSpecifier2(path) && isFrameworkSpecifier(path) && !isAbsolutePackageSpecifier(path), readFileSpecifiers = async (file5, transpiler6) => {
|
|
37784
37785
|
const dep = [];
|
|
37785
37786
|
const framework = [];
|
|
37786
37787
|
try {
|
|
@@ -37883,6 +37884,8 @@ var toSafeFileName6 = (specifier) => {
|
|
|
37883
37884
|
for (const child of bareImports) {
|
|
37884
37885
|
if (!isBareSpecifier2(child))
|
|
37885
37886
|
continue;
|
|
37887
|
+
if (isBuiltin(child))
|
|
37888
|
+
continue;
|
|
37886
37889
|
if (isFrameworkSpecifier(child))
|
|
37887
37890
|
continue;
|
|
37888
37891
|
if (isAbsolutePackageSpecifier(child))
|
|
@@ -47758,5 +47761,5 @@ export {
|
|
|
47758
47761
|
ANGULAR_INIT_TIMEOUT_MS
|
|
47759
47762
|
};
|
|
47760
47763
|
|
|
47761
|
-
//# debugId=
|
|
47764
|
+
//# debugId=1579DC7EEE9BCDA264756E2164756E21
|
|
47762
47765
|
//# sourceMappingURL=index.js.map
|