.gitignore 2.1 KB

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