.gitignore 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. ### Vue template
  2. # gitignore template for Vue.js projects
  3. #
  4. # Recommended template: Node.gitignore
  5. # TODO: where does this rule come from?
  6. docs/_book
  7. # TODO: where does this rule come from?
  8. test/
  9. ### Node template
  10. # Logs
  11. logs
  12. *.log
  13. npm-debug.log*
  14. yarn-debug.log*
  15. yarn-error.log*
  16. lerna-debug.log*
  17. .pnpm-debug.log*
  18. # Diagnostic reports (https://nodejs.org/api/report.html)
  19. report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
  20. # Runtime data
  21. pids
  22. *.pid
  23. *.seed
  24. *.pid.lock
  25. # Directory for instrumented libs generated by jscoverage/JSCover
  26. lib-cov
  27. # Coverage directory used by tools like istanbul
  28. coverage
  29. *.lcov
  30. # nyc test coverage
  31. .nyc_output
  32. # Grunt intermediate storage (https://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. # Snowpack dependency directory (https://snowpack.dev/)
  44. web_modules/
  45. # TypeScript cache
  46. *.tsbuildinfo
  47. # Optional npm cache directory
  48. .npm
  49. # Optional eslint cache
  50. .eslintcache
  51. # Optional stylelint cache
  52. .stylelintcache
  53. # Microbundle cache
  54. .rpt2_cache/
  55. .rts2_cache_cjs/
  56. .rts2_cache_es/
  57. .rts2_cache_umd/
  58. # Optional REPL history
  59. .node_repl_history
  60. # Output of 'npm pack'
  61. *.tgz
  62. # Yarn Integrity file
  63. .yarn-integrity
  64. # dotenv environment variable files
  65. .env
  66. .env.development.local
  67. .env.test.local
  68. .env.production.local
  69. .env.local
  70. # parcel-bundler cache (https://parceljs.org/)
  71. .cache
  72. .parcel-cache
  73. # Next.js build output
  74. .next
  75. out
  76. # Nuxt.js build / generate output
  77. .nuxt
  78. dist
  79. # Gatsby files
  80. .cache/
  81. # Comment in the public line in if your project uses Gatsby and not Next.js
  82. # https://nextjs.org/blog/next-9-1#public-directory-support
  83. # public
  84. # vuepress build output
  85. .vuepress/dist
  86. # vuepress v2.x temp and cache directory
  87. .temp
  88. .cache
  89. # Docusaurus cache and generated files
  90. .docusaurus
  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.*
  107. ### Vuejs template
  108. # Recommended template: Node.gitignore
  109. node_modules/
  110. dist/
  111. npm-debug.log
  112. yarn-error.log
  113. *.DS_Store
  114. .idea