index.js and index.d.ts are generated by napi-rs. Generate them at publish time via `napi prepublish` instead of checking them in. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
38 lines
396 B
Plaintext
38 lines
396 B
Plaintext
# Rust build artifacts
|
|
/target/
|
|
debug/
|
|
*.pdb
|
|
|
|
# Cargo lock (optional for libraries)
|
|
Cargo.lock
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Test files
|
|
*.pdf
|
|
!tests/fixtures/*.pdf
|
|
|
|
# Build cache
|
|
**/*.rs.bk
|
|
|
|
# NAPI generated (regenerated by `napi prepublish` during CI)
|
|
napi/index.js
|
|
napi/index.d.ts
|
|
|
|
# Local samples and scripts
|
|
samples/
|
|
scripts/
|
|
|
|
# Test output
|
|
test_output/
|
|
|