@absolutejs/absolute 0.19.0-beta.696 → 0.19.0-beta.697
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/build.js +2 -2
- package/dist/build.js.map +3 -3
- package/dist/cli/index.js +8 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +3 -3
- package/package.json +7 -7
package/dist/build.js
CHANGED
|
@@ -48930,7 +48930,7 @@ var toSafeFileName5 = (specifier) => specifier.replace(/\//g, "_").replace(/@/g,
|
|
|
48930
48930
|
} catch {
|
|
48931
48931
|
return false;
|
|
48932
48932
|
}
|
|
48933
|
-
}, isBareSpecifier = (spec) => !spec.startsWith(".") && !spec.startsWith("/") && !spec.startsWith("@src/"), FRAMEWORK_SPECIFIERS, isSkippedFile = (file3) => file3.includes("node_modules") || file3.includes("/build/") || file3.includes("/dist/") || file3.includes("/indexes/"), isDepSpecifier = (path2) => isBareSpecifier(path2) && !FRAMEWORK_SPECIFIERS.has(path2), readFileSpecifiers = async (file3, transpiler4) => {
|
|
48933
|
+
}, isBareSpecifier = (spec) => !spec.startsWith(".") && !spec.startsWith("/") && !spec.startsWith("@src/"), isAbsolutePackageSpecifier = (spec) => spec === "@absolutejs/absolute" || spec.startsWith("@absolutejs/absolute/"), FRAMEWORK_SPECIFIERS, isSkippedFile = (file3) => file3.includes("node_modules") || file3.includes("/build/") || file3.includes("/dist/") || file3.includes("/indexes/"), isDepSpecifier = (path2) => isBareSpecifier(path2) && !FRAMEWORK_SPECIFIERS.has(path2) && !isAbsolutePackageSpecifier(path2), readFileSpecifiers = async (file3, transpiler4) => {
|
|
48934
48934
|
const empty = [];
|
|
48935
48935
|
try {
|
|
48936
48936
|
const content = await Bun.file(file3).text();
|
|
@@ -49370,5 +49370,5 @@ export {
|
|
|
49370
49370
|
build
|
|
49371
49371
|
};
|
|
49372
49372
|
|
|
49373
|
-
//# debugId=
|
|
49373
|
+
//# debugId=1EF9044D35D4419E64756E2164756E21
|
|
49374
49374
|
//# sourceMappingURL=build.js.map
|