@absolutejs/absolute 0.19.0-beta.274 → 0.19.0-beta.275
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 +4 -3
- package/dist/build.js.map +4 -4
- package/dist/index.js +4 -3
- package/dist/index.js.map +4 -4
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -173740,7 +173740,8 @@ var detectFramework = (filePath, resolved) => {
|
|
|
173740
173740
|
if (resolved?.stylesDir && normalizedPath.startsWith(resolved.stylesDir)) {
|
|
173741
173741
|
return false;
|
|
173742
173742
|
}
|
|
173743
|
-
|
|
173743
|
+
const managedDirPattern = /(^|\/)(build|generated|\.absolutejs|node_modules|\.git)(\/|$)/;
|
|
173744
|
+
return managedDirPattern.test(normalizedPath) || normalizedPath.endsWith(".log") || normalizedPath.endsWith(".tmp");
|
|
173744
173745
|
};
|
|
173745
173746
|
var init_pathUtils = __esm(() => {
|
|
173746
173747
|
init_commonAncestor();
|
|
@@ -173768,7 +173769,7 @@ var safeRemoveFromGraph = (graph, fullPath) => {
|
|
|
173768
173769
|
operation: "add"
|
|
173769
173770
|
});
|
|
173770
173771
|
}
|
|
173771
|
-
}, shouldSkipFilename = (filename, isStylesDir) => !isStylesDir && (filename === "compiled" || filename === "build" || filename === "indexes" || filename === "server" || filename === "client" || filename.includes("/compiled/") || filename.includes("/build/") || filename.includes("/indexes/") || filename.includes("/server/") || filename.includes("/client/") || filename.startsWith("compiled/") || filename.startsWith("build/") || filename.startsWith("indexes/") || filename.startsWith("server/") || filename.startsWith("client/")) || filename.endsWith("/") || filename.includes(".tmp.") || filename.endsWith(".tmp") || filename.endsWith("~") || filename.startsWith(".#"), setupWatcher = (absolutePath, isStylesDir, state, onFileChange) => {
|
|
173772
|
+
}, shouldSkipFilename = (filename, isStylesDir) => !isStylesDir && (filename === "compiled" || filename === "generated" || filename === "build" || filename === "indexes" || filename === "server" || filename === "client" || filename.includes("/compiled/") || filename.includes("/generated/") || filename.includes("/build/") || filename.includes("/indexes/") || filename.includes("/server/") || filename.includes("/client/") || filename.startsWith("compiled/") || filename.startsWith("generated/") || filename.startsWith("build/") || filename.startsWith("indexes/") || filename.startsWith("server/") || filename.startsWith("client/")) || filename.endsWith("/") || filename.includes(".tmp.") || filename.endsWith(".tmp") || filename.endsWith("~") || filename.startsWith(".#"), setupWatcher = (absolutePath, isStylesDir, state, onFileChange) => {
|
|
173772
173773
|
const watcher = watch(absolutePath, { recursive: true }, (event, filename) => {
|
|
173773
173774
|
if (!filename) {
|
|
173774
173775
|
return;
|
|
@@ -214384,5 +214385,5 @@ export {
|
|
|
214384
214385
|
ANGULAR_INIT_TIMEOUT_MS
|
|
214385
214386
|
};
|
|
214386
214387
|
|
|
214387
|
-
//# debugId=
|
|
214388
|
+
//# debugId=405C654C1567A11E64756E2164756E21
|
|
214388
214389
|
//# sourceMappingURL=index.js.map
|