@fermindi/pwn-cli 0.9.10 → 0.9.11
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/package.json
CHANGED
|
@@ -14,8 +14,8 @@ import { getState, updateState, hasWorkspace } from '../core/state.js';
|
|
|
14
14
|
|
|
15
15
|
const execAsync = promisify(exec);
|
|
16
16
|
|
|
17
|
-
// ---
|
|
18
|
-
const METADATA_IGNORE_ENTRIES = ['.ai/batch/', '.ai/state.json', 'logs/'];
|
|
17
|
+
// --- Patterns that should never be tracked by git ---
|
|
18
|
+
const METADATA_IGNORE_ENTRIES = ['.ai/batch/', '.ai/state.json', 'logs/', 'node_modules/', '.venv/', 'venv/', 'vendor/'];
|
|
19
19
|
|
|
20
20
|
// --- Git Helpers ---
|
|
21
21
|
|