@locusai/cli 0.21.6 → 0.21.7
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/bin/locus.js +4 -2
- package/package.json +1 -1
package/bin/locus.js
CHANGED
|
@@ -4642,7 +4642,7 @@ function findIgnoredPaths(projectRoot, rules) {
|
|
|
4642
4642
|
if (SKIP_DIRS.has(name))
|
|
4643
4643
|
continue;
|
|
4644
4644
|
const fullPath = join12(dir, name);
|
|
4645
|
-
let stat;
|
|
4645
|
+
let stat = null;
|
|
4646
4646
|
try {
|
|
4647
4647
|
stat = statSync3(fullPath);
|
|
4648
4648
|
} catch {
|
|
@@ -4770,7 +4770,9 @@ var init_sandbox_ignore = __esm(() => {
|
|
|
4770
4770
|
".next",
|
|
4771
4771
|
".cache"
|
|
4772
4772
|
]);
|
|
4773
|
-
NOOP_BACKUP = {
|
|
4773
|
+
NOOP_BACKUP = {
|
|
4774
|
+
restore() {}
|
|
4775
|
+
};
|
|
4774
4776
|
});
|
|
4775
4777
|
|
|
4776
4778
|
// src/ai/claude-sandbox.ts
|