.gitignore 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. <<<<<<< HEAD
  2. .DS_Store
  3. node_modules
  4. /dist
  5. # local env files
  6. .env.local
  7. .env.*.local
  8. # Log files
  9. npm-debug.log*
  10. yarn-debug.log*
  11. yarn-error.log*
  12. pnpm-debug.log*
  13. # Editor directories and files
  14. .idea
  15. .vscode
  16. *.suo
  17. *.ntvs*
  18. *.njsproj
  19. *.sln
  20. *.sw?
  21. =======
  22. # Logs
  23. logs
  24. *.log
  25. npm-debug.log*
  26. yarn-debug.log*
  27. yarn-error.log*
  28. lerna-debug.log*
  29. # Diagnostic reports (https://nodejs.org/api/report.html)
  30. report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
  31. # Runtime data
  32. pids
  33. *.pid
  34. *.seed
  35. *.pid.lock
  36. # Directory for instrumented libs generated by jscoverage/JSCover
  37. lib-cov
  38. # Coverage directory used by tools like istanbul
  39. coverage
  40. *.lcov
  41. # nyc test coverage
  42. .nyc_output
  43. # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
  44. .grunt
  45. # Bower dependency directory (https://bower.io/)
  46. bower_components
  47. # node-waf configuration
  48. .lock-wscript
  49. # Compiled binary addons (https://nodejs.org/api/addons.html)
  50. build/Release
  51. # Dependency directories
  52. node_modules/
  53. jspm_packages/
  54. # Snowpack dependency directory (https://snowpack.dev/)
  55. web_modules/
  56. # TypeScript cache
  57. *.tsbuildinfo
  58. # Optional npm cache directory
  59. .npm
  60. # Optional eslint cache
  61. .eslintcache
  62. # Microbundle cache
  63. .rpt2_cache/
  64. .rts2_cache_cjs/
  65. .rts2_cache_es/
  66. .rts2_cache_umd/
  67. # Optional REPL history
  68. .node_repl_history
  69. # Output of 'npm pack'
  70. *.tgz
  71. # Yarn Integrity file
  72. .yarn-integrity
  73. # dotenv environment variables file
  74. .env
  75. .env.test
  76. # parcel-bundler cache (https://parceljs.org/)
  77. .cache
  78. .parcel-cache
  79. # Next.js build output
  80. .next
  81. out
  82. # Nuxt.js build / generate output
  83. .nuxt
  84. dist
  85. # Gatsby files
  86. .cache/
  87. # Comment in the public line in if your project uses Gatsby and not Next.js
  88. # https://nextjs.org/blog/next-9-1#public-directory-support
  89. # public
  90. # vuepress build output
  91. .vuepress/dist
  92. # Serverless directories
  93. .serverless/
  94. # FuseBox cache
  95. .fusebox/
  96. # DynamoDB Local files
  97. .dynamodb/
  98. # TernJS port file
  99. .tern-port
  100. # Stores VSCode versions used for testing VSCode extensions
  101. .vscode-test
  102. # yarn v2
  103. .yarn/cache
  104. .yarn/unplugged
  105. .yarn/build-state.yml
  106. .pnp.*
  107. >>>>>>> eeccf9c927432438a38298231065a6c683287e76