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