.gitignore 2.0 KB

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