Skip to content

Commit be3bf8a

Browse files
committed
fix: remove compiled files from examples
- Remove crypto.worker.js and crypto.worker.d.ts from basic-usage example - Add gitignore rules to prevent compiled files in examples - Examples should only contain source TypeScript files
1 parent 2206554 commit be3bf8a

File tree

4 files changed

+5
-77
lines changed

4 files changed

+5
-77
lines changed

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,11 @@ temp/
166166
/workers/screenshots/*
167167
/workers/downloads/*
168168

169+
# Compiled files in examples (should only contain source)
170+
examples/**/*.js
171+
examples/**/*.d.ts
172+
examples/**/dist/
173+
169174
# Test files and artifacts
170175
test-results/
171176
playwright-report/

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -360,8 +360,6 @@ This project uses automated semantic releases:
360360
- **Stable versions**: Merge to `main` branch → `x.x.x` versions
361361
- **Conventional commits**: Use `feat:`, `fix:`, `feat!:` for automatic versioning
362362

363-
See [RELEASE_WORKFLOW.md](RELEASE_WORKFLOW.md) for detailed release process.
364-
365363
## 📄 License
366364

367365
This project is licensed under the BSD 3-Clause License - see the LICENSE file for details.

examples/basic-usage/src/crypto.worker.d.ts

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

examples/basic-usage/src/crypto.worker.js

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

0 commit comments

Comments
 (0)