.gitignore 1.4 KB

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