Skip to content

Commit

Permalink
Merge pull request holochain#169 from c12i/target-dir-not-in-gitignore
Browse files Browse the repository at this point in the history
Update gitignore to include rust `target` and ui `node_modules` dirs
  • Loading branch information
c12i committed Jan 11, 2024
1 parent 078536b commit fc8f70d
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
4 changes: 3 additions & 1 deletion templates/lit/web-app/ui/.gitignore.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
.DS_Store

## npm
/node_modules/
/**/node_modules/
/npm-debug.log

## testing
Expand All @@ -19,6 +19,8 @@
/_site/
/dist/
/out-tsc/
/target/
/.cargo

storybook-static
.rollup.cache
Expand Down
3 changes: 2 additions & 1 deletion templates/svelte/web-app/ui/.gitignore.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
.DS_Store

## npm
/node_modules/
/**/node_modules/
/npm-debug.log

## testing
Expand All @@ -19,6 +19,7 @@
/_site/
/dist/
/out-tsc/
/target/

storybook-static
.rollup.cache
Expand Down
3 changes: 2 additions & 1 deletion templates/vanilla/web-app/.gitignore.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
.DS_Store

## npm
/node_modules/
/**/node_modules/
/npm-debug.log

## testing
Expand All @@ -19,6 +19,7 @@
/_site/
/dist/
/out-tsc/
/target/

storybook-static
.rollup.cache
Expand Down
3 changes: 2 additions & 1 deletion templates/vue/web-app/ui/.gitignore.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
.DS_Store

## npm
/node_modules/
/**/node_modules/
/npm-debug.log

## testing
Expand All @@ -19,6 +19,7 @@
/_site/
/dist/
/out-tsc/
/target/

storybook-static
.rollup.cache
Expand Down

0 comments on commit fc8f70d

Please sign in to comment.