Skip to content

Commit a2ecbf7

Browse files
committed
chore(vs-extension): remove dev-only files from repo and VSIX
Audit of the develop->main integration surfaced stray files that were never meant to ship: - packages/b2c-vs-extension/.claude/settings.json — a contributor's local Claude permission settings (hardcoded a personal home path) that was being packaged into the published VSIX. Removed and .claude/ added to the extension .gitignore. - DEVELOP-TESTING-SUMMARY.md — a scratch 'features to test' note at the repo root, not product documentation. Removed. - test-workspace/** — manual dev fixtures (not used by automated tests) were bundling into the VSIX. Excluded via .vscodeignore. No functional change; only affects what lands in the repo and the packaged extension.
1 parent 45f59b1 commit a2ecbf7

5 files changed

Lines changed: 8 additions & 102 deletions

File tree

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'b2c-vs-extension': patch
3+
---
4+
5+
Stop bundling development-only files into the published extension. The packaged VSIX no longer includes the `test-workspace/` sample cartridges or local `.claude/` editor settings, reducing package size and removing files that were never meant to ship.

DEVELOP-TESTING-SUMMARY.md

Lines changed: 0 additions & 82 deletions
This file was deleted.

packages/b2c-vs-extension/.claude/settings.json

Lines changed: 0 additions & 20 deletions
This file was deleted.

packages/b2c-vs-extension/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
out
22
dist
33
node_modules
4+
.claude/
45
.vscode-test/
56
.vsce-stage/
67
*.vsix

packages/b2c-vs-extension/.vscodeignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
.vscode/**
22
.vscode-test/**
3+
.claude/**
4+
test-workspace/**
35
src/**
46
!src/webview.html
57
!src/api-browser/swagger-webview.html

0 commit comments

Comments
 (0)