.gitignore 1.2 KB

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