-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.npmignore
More file actions
53 lines (46 loc) · 1.56 KB
/
Copy path.npmignore
File metadata and controls
53 lines (46 loc) · 1.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# The `files:` field in package.json is the source of truth for what
# ships. This .npmignore is belt-and-suspenders — it strips artifacts
# from globbed directories that `files:` pulls in, so we never ship
# build output, IDE state, or local caches even by accident.
# Rust build output
target/
**/target/
*.rlib
*.rmeta
# wasm-pack output (built per consumer; not part of the package)
native/web/pkg/
# Native build dirs
native/third_party/bloom_jolt/build/
# Jolt submodule extras we don't need at consumer build time.
# We ship JoltPhysics/Jolt/ (the actual sources) plus Build/ (its
# primary CMakeLists — bloom_jolt does add_subdirectory(Build)),
# plus LICENSE + README. Everything else is samples, viewer, docs,
# assets, tests — multi-MB and irrelevant for embedding.
native/third_party/JoltPhysics/.git
native/third_party/JoltPhysics/.github/
native/third_party/JoltPhysics/Assets/
native/third_party/JoltPhysics/Docs/
native/third_party/JoltPhysics/HelloWorld/
native/third_party/JoltPhysics/JoltViewer/
native/third_party/JoltPhysics/PerformanceTest/
native/third_party/JoltPhysics/Samples/
native/third_party/JoltPhysics/TestFramework/
native/third_party/JoltPhysics/UnitTests/
native/third_party/JoltPhysics/Doxyfile
native/third_party/JoltPhysics/run_doxygen.bat
native/third_party/JoltPhysics/sonar-project.properties
native/third_party/JoltPhysics/ContributorAgreement.md
# Perry build artifacts
*.ts.o
*_ts.o
.perry-cache/
dist/
# OS / editor junk
.DS_Store
.vscode/
.idea/
*.swp
# Local-only state never meant for the registry
.claude/
node_modules/
package-lock.json