Skip to content

Commit

Permalink
Merge 9bc36ac into e0554c5
Browse files Browse the repository at this point in the history
  • Loading branch information
chimurai committed Mar 21, 2020
2 parents e0554c5 + 9bc36ac commit 03fcb3a
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 3 deletions.
23 changes: 21 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# Genererated with "yarn gitignore:update"

### custom gitignore start
# <define project ignores here>
### custom gitignore end

# Created by https://www.gitignore.io/api/node
# Edit at https://www.gitignore.io/?templates=node
Expand Down Expand Up @@ -80,6 +85,18 @@ typings/
# nuxt.js build output
.nuxt

# rollup.js default build output
dist/

# Uncomment the public line if your project uses Gatsby
# https://nextjs.org/blog/next-9-1#public-directory-support
# https://create-react-app.dev/docs/using-the-public-folder/#docsNav
# public

# Storybook build outputs
.out
.storybook-out

# vuepress build output
.vuepress/dist

Expand All @@ -92,6 +109,8 @@ typings/
# DynamoDB Local files
.dynamodb/

# End of https://www.gitignore.io/api/node
# Temporary folders
tmp/
temp/

dist
# End of https://www.gitignore.io/api/node
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@
"lint:fix": "prettier --write \"**/*.{js,ts,md}\"",
"test": "jest",
"coverage": "jest --coverage --coverageReporters=lcov",
"prepare": "yarn clean && yarn test && yarn build"
"prepare": "yarn clean && yarn test && yarn build",
"gitignore:update": "curl https://www.gitignore.io/api/node --silent > .temp && cat tools/dotgitignore | cat - .temp > .gitignore && rm .temp"
},
"husky": {
"hooks": {
Expand Down
5 changes: 5 additions & 0 deletions tools/dotgitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Genererated with "yarn gitignore:update"

### custom gitignore start
# <define project ignores here>
### custom gitignore end

0 comments on commit 03fcb3a

Please sign in to comment.