code-context-extractor 0.1.2 → 0.1.3

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/README.md CHANGED
@@ -180,6 +180,13 @@ code-context
180
180
  .idea
181
181
  .vscode
182
182
  coverage
183
+ package-lock.json
184
+ yarn.lock
185
+ pnpm-lock.yaml
186
+ bun.lockb
187
+ .npmrc
188
+ .yarnrc
189
+ .yarnrc.yml
183
190
  *.lock
184
191
  *.log
185
192
  *.pem
@@ -192,6 +199,8 @@ id_rsa
192
199
  id_ed25519
193
200
  ```
194
201
 
202
+ Lock files are excluded by default because they are machine-generated, often large, and typically add little architectural context.
203
+
195
204
  ## Configuration file
196
205
  Use an optional JSON file (example: `example-config.json`) to set defaults.
197
206
  ```json
package/dist/config.js CHANGED
@@ -21,6 +21,13 @@ exports.DEFAULT_EXCLUDES = [
21
21
  '.vscode/**',
22
22
  'coverage/**',
23
23
  '*.lock',
24
+ 'package-lock.json',
25
+ 'yarn.lock',
26
+ 'pnpm-lock.yaml',
27
+ 'bun.lockb',
28
+ '.npmrc',
29
+ '.yarnrc',
30
+ '.yarnrc.yml',
24
31
  '*.log',
25
32
  '*.pem',
26
33
  '*.key',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "code-context-extractor",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "Local-only CLI tool to extract codebase context into a single text or Markdown file.",
5
5
  "license": "MIT",
6
6
  "author": "Open Source Contributors",