.gitignore 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. # Dependency directory
  2. node_modules
  3. # Rest pulled from https://github.com/github/gitignore/blob/master/Node.gitignore
  4. # Logs
  5. logs
  6. *.log
  7. npm-debug.log*
  8. yarn-debug.log*
  9. yarn-error.log*
  10. lerna-debug.log*
  11. # Diagnostic reports (https://nodejs.org/api/report.html)
  12. report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
  13. # Runtime data
  14. pids
  15. *.pid
  16. *.seed
  17. *.pid.lock
  18. # Directory for instrumented libs generated by jscoverage/JSCover
  19. lib-cov
  20. # Coverage directory used by tools like istanbul
  21. coverage
  22. *.lcov
  23. # nyc test coverage
  24. .nyc_output
  25. # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
  26. .grunt
  27. # Bower dependency directory (https://bower.io/)
  28. bower_components
  29. # node-waf configuration
  30. .lock-wscript
  31. # Compiled binary addons (https://nodejs.org/api/addons.html)
  32. build/Release
  33. # Dependency directories
  34. jspm_packages/
  35. # TypeScript v1 declaration files
  36. typings/
  37. # TypeScript cache
  38. *.tsbuildinfo
  39. # Optional npm cache directory
  40. .npm
  41. # Optional eslint cache
  42. .eslintcache
  43. # Optional REPL history
  44. .node_repl_history
  45. # Output of 'npm pack'
  46. *.tgz
  47. # Yarn Integrity file
  48. .yarn-integrity
  49. # dotenv environment variables file
  50. .env
  51. .env.test
  52. # parcel-bundler cache (https://parceljs.org/)
  53. .cache
  54. # next.js build output
  55. .next
  56. # nuxt.js build output
  57. .nuxt
  58. # vuepress build output
  59. .vuepress/dist
  60. # Serverless directories
  61. .serverless/
  62. # FuseBox cache
  63. .fusebox/
  64. # DynamoDB Local files
  65. .dynamodb/
  66. # OS metadata
  67. .DS_Store
  68. Thumbs.db
  69. # Ignore built ts files
  70. __tests__/runner/*
  71. lib/**/*
  72. # Ignore dist directory
  73. # It will be force added for release branches
  74. dist/