.gitignore 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. # Logs
  2. logs
  3. *.log
  4. npm-debug.log*
  5. yarn-debug.log*
  6. yarn-error.log*
  7. # Coverage directory used by tools like istanbul
  8. coverage
  9. # nyc test coverage
  10. .nyc_output
  11. # Node Modules
  12. node_modules/
  13. # Secrets
  14. *.env*
  15. # Logs
  16. logs
  17. *.log
  18. npm-debug.log*
  19. yarn-debug.log*
  20. yarn-error.log*
  21. lerna-debug.log*
  22. # Runtime data
  23. pids
  24. *.pid
  25. *.seed
  26. *.pid.lock
  27. # Directory for instrumented libs generated by jscoverage/JSCover
  28. lib-cov
  29. # Coverage directory used by tools like istanbul
  30. coverage
  31. # nyc test coverage
  32. .nyc_output
  33. # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
  34. .grunt
  35. # Bower dependency directory (https://bower.io/)
  36. bower_components
  37. # node-waf configuration
  38. .lock-wscript
  39. # Compiled binary addons (http://nodejs.org/api/addons.html)
  40. build/Release
  41. # Dependency directories
  42. node_modules/
  43. jspm_packages/
  44. # Typescript v1 declaration files
  45. typings/
  46. # Optional npm cache directory
  47. .npm
  48. # Optional eslint cache
  49. .eslintcache
  50. # Optional REPL history
  51. .node_repl_history
  52. # Output of 'npm pack'
  53. *.tgz
  54. # cache and distribution folders
  55. .cache/
  56. .now
  57. dist/
  58. # Mac files
  59. .DS_Store
  60. # Yarn
  61. yarn-error.log
  62. .pnp/
  63. .pnp.js
  64. # Yarn Integrity file
  65. .yarn-integrity