Spaces:
Running
Running
misc: add some stuff to gitignore
Browse files- viewer/.gitignore +23 -0
viewer/.gitignore
CHANGED
@@ -32,3 +32,26 @@ dist-ssr
|
|
32 |
|
33 |
# Bun
|
34 |
bun.lockb
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
32 |
|
33 |
# Bun
|
34 |
bun.lockb
|
35 |
+
|
36 |
+
# Ignore binary STL files
|
37 |
+
*.STL
|
38 |
+
*.stl
|
39 |
+
|
40 |
+
# OS specific files
|
41 |
+
.DS_Store
|
42 |
+
.DS_Store?
|
43 |
+
._*
|
44 |
+
.Spotlight-V100
|
45 |
+
.Trashes
|
46 |
+
ehthumbs.db
|
47 |
+
Thumbs.db
|
48 |
+
|
49 |
+
# Node.js dependencies
|
50 |
+
node_modules/
|
51 |
+
npm-debug.log
|
52 |
+
yarn-debug.log
|
53 |
+
yarn-error.log
|
54 |
+
|
55 |
+
# Build files
|
56 |
+
/dist
|
57 |
+
/build
|