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 +9 -0
- package/dist/config.js +7 -0
- package/package.json +1 -1
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
package/package.json
CHANGED