_gitignore 670 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. .DS_Store
  2. node_modules
  3. /dist
  4. <%_ if (rootOptions.plugins && rootOptions.plugins['@vue/cli-plugin-e2e-nightwatch']) { _%>
  5. /tests/e2e/reports/
  6. selenium-debug.log
  7. chromedriver.log
  8. geckodriver.log
  9. <%_ } _%>
  10. <%_ if (rootOptions.plugins && rootOptions.plugins['@vue/cli-plugin-e2e-cypress']) { _%>
  11. /tests/e2e/videos/
  12. /tests/e2e/screenshots/
  13. <%_ } _%>
  14. <%_ if (rootOptions.plugins && rootOptions.plugins['@vue/cli-plugin-e2e-webdriverio']) { _%>
  15. /tests/e2e/logs/
  16. <%_ } _%>
  17. # local env files
  18. .env.local
  19. .env.*.local
  20. # Log files
  21. npm-debug.log*
  22. yarn-debug.log*
  23. yarn-error.log*
  24. pnpm-debug.log*
  25. # Editor directories and files
  26. .idea
  27. .vscode
  28. *.suo
  29. *.ntvs*
  30. *.njsproj
  31. *.sln
  32. *.sw?