.gitignore 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. /.idea/
  2. /bespoke-theme-*/
  3. /dist/
  4. /node_modules/
  5. ### Node template
  6. # Logs
  7. logs
  8. *.log
  9. npm-debug.log*
  10. yarn-debug.log*
  11. yarn-error.log*
  12. # Runtime data
  13. pids
  14. *.pid
  15. *.seed
  16. *.pid.lock
  17. # Directory for instrumented libs generated by jscoverage/JSCover
  18. lib-cov
  19. # Coverage directory used by tools like istanbul
  20. coverage
  21. # nyc test coverage
  22. .nyc_output
  23. # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
  24. .grunt
  25. # Bower dependency directory (https://bower.io/)
  26. bower_components
  27. # node-waf configuration
  28. .lock-wscript
  29. # Compiled binary addons (https://nodejs.org/api/addons.html)
  30. build/Release
  31. # Dependency directories
  32. node_modules/
  33. jspm_packages/
  34. # TypeScript v1 declaration files
  35. typings/
  36. # Optional npm cache directory
  37. .npm
  38. # Optional eslint cache
  39. .eslintcache
  40. # Optional REPL history
  41. .node_repl_history
  42. # Output of 'npm pack'
  43. *.tgz
  44. # Yarn Integrity file
  45. .yarn-integrity
  46. # dotenv environment variables file
  47. .env
  48. # parcel-bundler cache (https://parceljs.org/)
  49. .cache
  50. # next.js build output
  51. .next
  52. # nuxt.js build output
  53. .nuxt
  54. # vuepress build output
  55. .vuepress/dist
  56. # Serverless directories
  57. .serverless