@nitra/cursor 5.3.1 → 5.3.2

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## [5.3.2] - 2026-06-11
4
+
5
+ ### Changed
6
+
7
+ - release: @nitra/cursor@5.3.1
8
+
3
9
  ## [5.3.1] - 2026-06-11
4
10
 
5
11
  ### Fixed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nitra/cursor",
3
- "version": "5.3.1",
3
+ "version": "5.3.2",
4
4
  "description": "CLI для завантаження cursor-правил (префікс n-) у локальний репозиторій",
5
5
  "keywords": [
6
6
  "cli",
@@ -5,6 +5,7 @@ import picomatch from 'picomatch'
5
5
  export const DOCGEN_IGNORE_GLOBS = Object.freeze([
6
6
  '**/node_modules/**',
7
7
  '**/dist/**',
8
+ '**/target/**',
8
9
  '.git/**',
9
10
  '**/__pycache__/**',
10
11
  '**/coverage/**',
@@ -11,7 +11,7 @@ import { isDocgenIgnored } from './docgen-ignore.mjs'
11
11
  import { QUALITY_THRESHOLD, readDocQuality, staleness } from './docgen-crc.mjs'
12
12
 
13
13
  /** Кодові розширення, для яких генеруємо документацію. */
14
- const SOURCE_EXTENSIONS = new Set(['.js', '.mjs', '.ts', '.vue', '.py'])
14
+ const SOURCE_EXTENSIONS = new Set(['.js', '.mjs', '.ts', '.vue', '.py', '.rs'])
15
15
 
16
16
  /** `*.test.*`, `*.spec.*` — тести, документувати не треба. */
17
17
  const TEST_FILE_RE = /\.(?:test|spec)\.[^.]+$/u