Showing
1 changed file
with
91 additions
and
0 deletions
.gitignore
0 → 100644
| 1 | + | ||
| 2 | +# Created by https://www.gitignore.io/api/node | ||
| 3 | +# Edit at https://www.gitignore.io/?templates=node | ||
| 4 | + | ||
| 5 | +### Node ### | ||
| 6 | +# Logs | ||
| 7 | +logs | ||
| 8 | +*.log | ||
| 9 | +npm-debug.log* | ||
| 10 | +yarn-debug.log* | ||
| 11 | +yarn-error.log* | ||
| 12 | +lerna-debug.log* | ||
| 13 | + | ||
| 14 | +# Diagnostic reports (https://nodejs.org/api/report.html) | ||
| 15 | +report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json | ||
| 16 | + | ||
| 17 | +# Runtime data | ||
| 18 | +pids | ||
| 19 | +*.pid | ||
| 20 | +*.seed | ||
| 21 | +*.pid.lock | ||
| 22 | + | ||
| 23 | +# Directory for instrumented libs generated by jscoverage/JSCover | ||
| 24 | +lib-cov | ||
| 25 | + | ||
| 26 | +# Coverage directory used by tools like istanbul | ||
| 27 | +coverage | ||
| 28 | + | ||
| 29 | +# nyc test coverage | ||
| 30 | +.nyc_output | ||
| 31 | + | ||
| 32 | +# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) | ||
| 33 | +.grunt | ||
| 34 | + | ||
| 35 | +# Bower dependency directory (https://bower.io/) | ||
| 36 | +bower_components | ||
| 37 | + | ||
| 38 | +# node-waf configuration | ||
| 39 | +.lock-wscript | ||
| 40 | + | ||
| 41 | +# Compiled binary addons (https://nodejs.org/api/addons.html) | ||
| 42 | +build/Release | ||
| 43 | + | ||
| 44 | +# Dependency directories | ||
| 45 | +node_modules/ | ||
| 46 | +jspm_packages/ | ||
| 47 | + | ||
| 48 | +# TypeScript v1 declaration files | ||
| 49 | +typings/ | ||
| 50 | + | ||
| 51 | +# Optional npm cache directory | ||
| 52 | +.npm | ||
| 53 | + | ||
| 54 | +# Optional eslint cache | ||
| 55 | +.eslintcache | ||
| 56 | + | ||
| 57 | +# Optional REPL history | ||
| 58 | +.node_repl_history | ||
| 59 | + | ||
| 60 | +# Output of 'npm pack' | ||
| 61 | +*.tgz | ||
| 62 | + | ||
| 63 | +# Yarn Integrity file | ||
| 64 | +.yarn-integrity | ||
| 65 | + | ||
| 66 | +# dotenv environment variables file | ||
| 67 | +.env | ||
| 68 | +.env.test | ||
| 69 | + | ||
| 70 | +# parcel-bundler cache (https://parceljs.org/) | ||
| 71 | +.cache | ||
| 72 | + | ||
| 73 | +# next.js build output | ||
| 74 | +.next | ||
| 75 | + | ||
| 76 | +# nuxt.js build output | ||
| 77 | +.nuxt | ||
| 78 | + | ||
| 79 | +# vuepress build output | ||
| 80 | +.vuepress/dist | ||
| 81 | + | ||
| 82 | +# Serverless directories | ||
| 83 | +.serverless/ | ||
| 84 | + | ||
| 85 | +# FuseBox cache | ||
| 86 | +.fusebox/ | ||
| 87 | + | ||
| 88 | +# DynamoDB Local files | ||
| 89 | +.dynamodb/ | ||
| 90 | + | ||
| 91 | +# End of https://www.gitignore.io/api/node |
-
Please register or login to post a comment