Skip to content

Commit

Permalink
chore: normalize gitignores
Browse files Browse the repository at this point in the history
  • Loading branch information
lukeed committed May 3, 2022
1 parent 082695c commit d401dc6
Show file tree
Hide file tree
Showing 10 changed files with 67 additions and 58 deletions.
12 changes: 8 additions & 4 deletions worker-cobol/.gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
node_modules
worker
dist
build
.DS_Store
/node_modules
*-lock.*
*.lock
*.log

/dist
/build
8 changes: 8 additions & 0 deletions worker-durable-objects/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
.DS_Store
/node_modules
*-lock.*
*.lock
*.log

/dist
/build
19 changes: 8 additions & 11 deletions worker-emscripten/.gitignore
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
/target
**/*.rs.bk
Cargo.lock
bin/
pkg/
wasm-pack.log
worker/
node_modules/
dist/
build/
.DS_Store
/node_modules
*-lock.*
*.lock
*.log

/dist
/build
emscripten.*
.cargo-ok
9 changes: 5 additions & 4 deletions worker-router/.gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
node_modules/
worker/
.cargo-ok
package-lock.json
.DS_Store
/node_modules
*-lock.*
*.lock
*.log
9 changes: 7 additions & 2 deletions worker-rust/.gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
/target
.DS_Store
/node_modules

**/*.rs.bk
wasm-pack.log
build/

build/
/target
/dist
28 changes: 6 additions & 22 deletions worker-sites-react/.gitignore
Original file line number Diff line number Diff line change
@@ -1,25 +1,9 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
.DS_Store
/node_modules
/.pnp
.pnp.js
*-lock.*
*.lock
*.log

# testing
/coverage

# production
/dist
/build

# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*

dist
.env.*
6 changes: 5 additions & 1 deletion worker-sites/.gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
dist
.DS_Store
/node_modules
*-lock.*
*.lock
*.log
8 changes: 7 additions & 1 deletion worker-speedtest/.gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,7 @@
node_modules/*
.DS_Store
/node_modules
*-lock.*
*.lock
*.log

/dist
11 changes: 7 additions & 4 deletions worker-typescript/.gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
dist
node_modules
transpiled
/.idea/
.DS_Store
/node_modules
*-lock.*
*.lock
*.log

/dist
15 changes: 6 additions & 9 deletions worker/.gitignore
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
/target
.DS_Store
/node_modules
*-lock.*
*.lock
*.log

/dist
**/*.rs.bk
Cargo.lock
bin/
pkg/
wasm-pack.log
worker/
node_modules/
.cargo-ok

0 comments on commit d401dc6

Please sign in to comment.