Skip to content

Commit

Permalink
ignore mud artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
holic committed Aug 27, 2024
1 parent 834d288 commit 76572cd
Show file tree
Hide file tree
Showing 9 changed files with 43 additions and 17 deletions.
13 changes: 10 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,23 @@ yarn.lock
lerna-debug.log
yarn-error.log
.turbo
.attest
.tstrace

.env*

# We don't want projects created from templates to ignore their lockfiles, but we don't
# want to check them in here, so we'll ignore them from the root.
templates/*/pnpm-lock.yaml

.env

# mud test data
test-data/world-logs-bulk-*.json
test-data/world-logs-query.json

.attest
.tstrace
# mud artifacts
.mud

# sqlite indexer data files
*.db
*.db-journal
2 changes: 0 additions & 2 deletions e2e/.gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
node_modules
*.db
*.db-journal
7 changes: 6 additions & 1 deletion examples/local-explorer/.gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,7 @@
indexer.db
node_modules

# mud artifacts
.mud
# sqlite indexer data
*.db
*.db-journal
7 changes: 5 additions & 2 deletions templates/phaser/.gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
node_modules

# mud sqlite indexer data
indexer.db
# mud artifacts
.mud
# sqlite indexer data
*.db
*.db-journal
7 changes: 5 additions & 2 deletions templates/react-ecs/.gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
node_modules

# mud sqlite indexer data
indexer.db
# mud artifacts
.mud
# sqlite indexer data
*.db
*.db-journal
7 changes: 5 additions & 2 deletions templates/react/.gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
node_modules

# mud sqlite indexer data
indexer.db
# mud artifacts
.mud
# sqlite indexer data
*.db
*.db-journal
7 changes: 5 additions & 2 deletions templates/threejs/.gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
node_modules

# mud sqlite indexer data
indexer.db
# mud artifacts
.mud
# sqlite indexer data
*.db
*.db-journal
7 changes: 5 additions & 2 deletions templates/vanilla/.gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
node_modules

# mud sqlite indexer data
indexer.db
# mud artifacts
.mud
# sqlite indexer data
*.db
*.db-journal
3 changes: 2 additions & 1 deletion test/mock-game-contracts/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ bindings/
artifacts/
broadcast/

# Ignore all MUD deploy artifacts
# mud build artifacts
.mud
deploys
worlds.json*

0 comments on commit 76572cd

Please sign in to comment.