.gitignore 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. #ide
  2. *.DS_Store
  3. .idea
  4. .vscode
  5. #webpack build
  6. dist/
  7. #npm
  8. package-lock.json
  9. # Logs
  10. logs
  11. *.log
  12. npm-debug.log*
  13. yarn-debug.log*
  14. yarn-error.log*
  15. lerna-debug.log*
  16. #c++
  17. CMakeFiles
  18. cmake_install.cmake
  19. CMakeCache.txt
  20. Makefile
  21. # Runtime data
  22. pids
  23. *.pid
  24. *.seed
  25. *.pid.lock
  26. # Directory for instrumented library generated by jscoverage/JSCover
  27. lib-cov
  28. # Coverage directory used by tools like istanbul
  29. coverage
  30. # nyc test coverage
  31. .nyc_output
  32. # Grunt intermediate storage (http://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. # C++ build debug directories
  44. cmake-build-debug
  45. # TypeScript v1 declaration files
  46. typings/
  47. # Optional npm cache directory
  48. .npm
  49. # Optional eslint cache
  50. .eslintcache
  51. # Optional REPL snapshot
  52. .node_repl_history
  53. # Output of 'npm pack'
  54. *.tgz
  55. # Yarn Integrity file
  56. .yarn-integrity
  57. # dotenv environment variables file
  58. .env
  59. # next.js build output
  60. .next
  61. #lerna-changelog
  62. .changelog
  63. #editor workspace file
  64. .idea/
  65. .DS_Store
  66. .history
  67. examples