scai 0.1.25 β†’ 0.1.26

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.
@@ -1,52 +1,68 @@
1
1
  export const IGNORED_EXTENSIONS = [
2
- // πŸ–Ό Media
2
+ // Media
3
3
  '.png', '.jpg', '.jpeg', '.gif', '.webp', '.svg', '.ico',
4
4
  '.mp4', '.mp3', '.mov', '.avi', '.mkv', '.flv', '.wav', '.flac',
5
5
  '.aac', '.m4a', '.wma', '.3gp', '.webm', '.ogg', '.aiff', '.au',
6
- // πŸ“¦ Archives & install packages
6
+ // Archives & install packages
7
7
  '.zip', '.tar', '.gz', '.bz2', '.xz', '.rar', '.7z',
8
8
  '.jar', '.war', '.ear', '.deb', '.rpm', '.pkg', '.msi', '.dmg', '.cab', '.apk',
9
9
  '.tar.gz', '.tar.bz2', '.tar.xz', '.tar.lzma', '.tar.zst',
10
- // 🧱 Binaries & executables
10
+ // Binaries & executables
11
11
  '.exe', '.dll', '.bin', '.so', '.dylib', '.a', '.lib',
12
12
  '.iso', '.img', '.elf', '.o', '.obj', '.msm', '.vbs', '.jscript',
13
13
  '.cmd', '.bat', '.ps1', '.sh', '.bash', '.run',
14
- // πŸ§ͺ Runtime / build / cache
14
+ // Runtime / build / cache
15
15
  '.log', '.tmp', '.map',
16
16
  '.db', '.sqlite', '.pkl', '.sav', '.rdb', '.ldb',
17
17
  '.pyc', '.class', '.tsbuildinfo', '.coverage', '.eslintcache',
18
18
  '.yarn', '.webpack', '.babel', '.compilercache',
19
- // πŸ”€ Fonts & styles
19
+ // Fonts & styles
20
20
  '.woff', '.woff2', '.ttf', '.eot', '.otf', '.css.map',
21
21
  '.scss', '.sass', '.less', '.styl',
22
- // πŸ” Certs, keys, credentials
22
+ // Certs, keys, credentials
23
23
  '.crt', '.key', '.pem', '.pub', '.asc', '.gpg', '.p12', '.csr', '.der', '.pfx',
24
- // ♻️ Backups / temp
24
+ // Backups / temp
25
25
  '.bak', '.old', '.swp', '.swo', '.orig',
26
26
  '.sublime-workspace', '.sublime-project', '.db-shm', '.db-wal',
27
- // 🌐 System/config folders (still ignored by path, not extension)
27
+ // System/config folders (still ignored by path, not extension)
28
28
  '.DS_Store', '.bundle', '.npmrc',
29
- // πŸ—ΊοΈ GIS / Geospatial
29
+ // GIS / Geospatial
30
30
  '.shp', '.shx', '.dbf', '.prj', '.qix', '.sbn', '.sbx', '.shp.xml', '.cpg', '.gpkg', '.mif', '.mid',
31
- // πŸ“Š Enterprise BI / Reporting
31
+ // Enterprise BI / Reporting
32
32
  '.pbix', '.rdl', '.rpt', '.bqy', '.iqy',
33
- // πŸ§ͺ ETL / DWH / Modeling
33
+ // ETL / DWH / Modeling
34
34
  '.abf', '.dtsx', '.bim', '.xmi',
35
- // πŸ—οΈ CAD / Engineering
35
+ // CAD / Engineering
36
36
  '.dwg', '.dxf', '.step', '.stp', '.sldprt', '.sldasm',
37
37
  '.iges', '.igs', '.3ds', '.fbx',
38
- // 🧾 Forms / Print / Publishing
38
+ // Forms / Print / Publishing
39
39
  '.xps', '.afpub', '.pub', '.indd', '.qxd', '.frm', '.frx', '.frl',
40
- // πŸ’° ERP / Finance / Legacy DB
40
+ // ERP / Finance / Legacy DB
41
41
  '.mbd', '.fdb', '.nav', '.accdb', '.mdb', '.gdb',
42
42
  '.sap', '.sappkg', '.qbw', '.qbb',
43
- // πŸ”’ Lock files (but NOT lock *configs*)
43
+ // Lock files (but NOT lock *configs*)
44
44
  '.lck', '.lockfile', '.db-lock', '.pid', '.socket',
45
- // ⚠️ Added file types that are only kept by exception
46
- '.xml', // Only specific XML files like pom.xml should be kept
47
- '.json', // Kept only if exact filename is in exceptions
48
- '.yaml', // Kept only if filename is explicitly whitelisted
49
- '.yml',
50
- '.md',
51
- '.txt',
45
+ // Documentation and Readme Files
46
+ '.md', // Markdown files for documentation
47
+ '.rst', // reStructuredText files for documentation
48
+ '.txt', // Plain text files (can be used for documentation or notes)
49
+ // Configuration files (JSON/YAML/XML)
50
+ '.json', // General JSON config files
51
+ '.yaml', // YAML configuration files
52
+ '.yml', // YAML configuration files
53
+ '.xml', // XML configuration files
54
+ // Miscellaneous Important Files
55
+ '.properties', // Java properties files (configuration)
56
+ '.xml.bck', // Backup XML files
57
+ '.bak', // General backup files
58
+ '.swp', // Swap files (e.g., vim/sublime temp files)
59
+ '.swo', // Swap files
60
+ '.orig', // Original backup files
61
+ '.old', // Old version files
62
+ '.~', // Temp files generated by some editors (e.g., vim)
63
+ '.md5', // MD5 checksums
64
+ '.sha1', // SHA1 checksums
65
+ '.sha256', // SHA256 checksums
66
+ '.tmp', // Temporary files
67
+ '.bak', // Backup file (for various applications)
52
68
  ];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "scai",
3
- "version": "0.1.25",
3
+ "version": "0.1.26",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "scai": "./dist/index.js"