claude-flow-novice 2.18.21 → 2.18.22
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.
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
//! - rs, ts, js, json, md, sh, yaml, yml, txt, config
|
|
16
16
|
//! - Use --types to specify custom extensions
|
|
17
17
|
//!
|
|
18
|
-
//! ## Excluded Directories (see EXCLUDED_DIRS constant -
|
|
18
|
+
//! ## Excluded Directories (see EXCLUDED_DIRS constant - 54 patterns):
|
|
19
19
|
//! - Dependencies: node_modules, vendor, .pnpm, .yarn
|
|
20
20
|
//! - Build artifacts: target, dist, build, out, .next, .nuxt, .output, .turbo, .parcel-cache
|
|
21
21
|
//! - VCS: .git, .svn, .hg
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
//! - Cache: .cache, __pycache__, .pytest_cache, .mypy_cache, .ruff_cache, coverage, .nyc_output
|
|
24
24
|
//! - Virtual envs: .venv, venv, env
|
|
25
25
|
//! - IaC: .terraform, .serverless, .aws-sam
|
|
26
|
-
//! - Project-specific: .artifacts, .ruvector, .archive, archive
|
|
26
|
+
//! - Project-specific: .artifacts, .ruvector, .archive, archive, .archived, archived
|
|
27
27
|
//! - Backups/temp: backups, .backups, backup, tmp, .tmp, temp, logs
|
|
28
28
|
//! - Test artifacts: __snapshots__, __mocks__, playwright-report, test-results
|
|
29
29
|
//! - Doc builds: _site, .docusaurus, site
|
|
@@ -122,6 +122,8 @@ const EXCLUDED_DIRS: &[&str] = &[
|
|
|
122
122
|
".ruvector", // RuVector local index (avoid self-indexing)
|
|
123
123
|
".archive", // Archived/deprecated code
|
|
124
124
|
"archive", // Archive directories
|
|
125
|
+
".archived", // Archived code (alternate naming)
|
|
126
|
+
"archived", // Archived directories
|
|
125
127
|
|
|
126
128
|
// Backups & generated
|
|
127
129
|
"backups", // Backup directories
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-flow-novice",
|
|
3
|
-
"version": "2.18.
|
|
3
|
+
"version": "2.18.22",
|
|
4
4
|
"description": "Claude Flow Novice - Advanced orchestration platform for multi-agent AI workflows with CFN Loop architecture\n\nIncludes Local RuVector Accelerator and all CFN skills for complete functionality.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"type": "module",
|