.gitignore 1002 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. dst
  2. *.sqlite
  3. # Created by https://www.gitignore.io/api/node
  4. ### Node ###
  5. # Logs
  6. logs
  7. *.log
  8. npm-debug.log*
  9. yarn-debug.log*
  10. yarn-error.log*
  11. # Runtime data
  12. pids
  13. *.pid
  14. *.seed
  15. *.pid.lock
  16. # Directory for instrumented libs generated by jscoverage/JSCover
  17. lib-cov
  18. # Coverage directory used by tools like istanbul
  19. coverage
  20. # nyc test coverage
  21. .nyc_output
  22. # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
  23. .grunt
  24. # Bower dependency directory (https://bower.io/)
  25. bower_components
  26. # node-waf configuration
  27. .lock-wscript
  28. # Compiled binary addons (http://nodejs.org/api/addons.html)
  29. build/Release
  30. # Dependency directories
  31. node_modules/
  32. jspm_packages/
  33. # Typescript v1 declaration files
  34. typings/
  35. # Optional npm cache directory
  36. .npm
  37. # Optional eslint cache
  38. .eslintcache
  39. # Optional REPL history
  40. .node_repl_history
  41. # Output of 'npm pack'
  42. *.tgz
  43. # Yarn Integrity file
  44. .yarn-integrity
  45. # dotenv environment variables file
  46. .env
  47. # End of https://www.gitignore.io/api/node