@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/cli/index.js
CHANGED
|
@@ -1336,7 +1336,14 @@ var init_typecheck = __esm(() => {
|
|
|
1336
1336
|
"../**/dist/**/*",
|
|
1337
1337
|
"../**/generated/**/*"
|
|
1338
1338
|
];
|
|
1339
|
-
TYPECHECK_INCLUDE = [
|
|
1339
|
+
TYPECHECK_INCLUDE = [
|
|
1340
|
+
"../src/**/*",
|
|
1341
|
+
"../types/**/*",
|
|
1342
|
+
"../example/**/*",
|
|
1343
|
+
"../tests/**/*",
|
|
1344
|
+
"../test/**/*",
|
|
1345
|
+
"../scripts/**/*"
|
|
1346
|
+
];
|
|
1340
1347
|
});
|
|
1341
1348
|
|
|
1342
1349
|
// src/cli/scripts/dev.ts
|
package/dist/index.js
CHANGED
|
@@ -49016,7 +49016,7 @@ var toSafeFileName5 = (specifier) => specifier.replace(/\//g, "_").replace(/@/g,
|
|
|
49016
49016
|
} catch {
|
|
49017
49017
|
return false;
|
|
49018
49018
|
}
|
|
49019
|
-
}, isBareSpecifier = (spec) => !spec.startsWith(".") && !spec.startsWith("/") && !spec.startsWith("@src/"), FRAMEWORK_SPECIFIERS, isSkippedFile = (file4) => file4.includes("node_modules") || file4.includes("/build/") || file4.includes("/dist/") || file4.includes("/indexes/"), isDepSpecifier = (path2) => isBareSpecifier(path2) && !FRAMEWORK_SPECIFIERS.has(path2), readFileSpecifiers = async (file4, transpiler4) => {
|
|
49019
|
+
}, isBareSpecifier = (spec) => !spec.startsWith(".") && !spec.startsWith("/") && !spec.startsWith("@src/"), isAbsolutePackageSpecifier = (spec) => spec === "@absolutejs/absolute" || spec.startsWith("@absolutejs/absolute/"), FRAMEWORK_SPECIFIERS, isSkippedFile = (file4) => file4.includes("node_modules") || file4.includes("/build/") || file4.includes("/dist/") || file4.includes("/indexes/"), isDepSpecifier = (path2) => isBareSpecifier(path2) && !FRAMEWORK_SPECIFIERS.has(path2) && !isAbsolutePackageSpecifier(path2), readFileSpecifiers = async (file4, transpiler4) => {
|
|
49020
49020
|
const empty = [];
|
|
49021
49021
|
try {
|
|
49022
49022
|
const content = await Bun.file(file4).text();
|
|
@@ -57733,5 +57733,5 @@ export {
|
|
|
57733
57733
|
ANGULAR_INIT_TIMEOUT_MS
|
|
57734
57734
|
};
|
|
57735
57735
|
|
|
57736
|
-
//# debugId=
|
|
57736
|
+
//# debugId=378C5FB195A6B7FF64756E2164756E21
|
|
57737
57737
|
//# sourceMappingURL=index.js.map
|