.gitignore 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. #ide
  2. *.DS_Store
  3. .idea
  4. .vscode
  5. #npm
  6. package-lock.json
  7. # Logs
  8. logs
  9. *.log
  10. npm-debug.log*
  11. yarn-debug.log*
  12. yarn-error.log*
  13. lerna-debug.log*
  14. #c++
  15. CMakeFiles
  16. cmake_install.cmake
  17. CMakeCache.txt
  18. Makefile
  19. # Runtime data
  20. pids
  21. *.pid
  22. *.seed
  23. *.pid.lock
  24. # Directory for instrumented library generated by jscoverage/JSCover
  25. lib-cov
  26. # Coverage directory used by tools like istanbul
  27. coverage
  28. # nyc test coverage
  29. .nyc_output
  30. # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
  31. .grunt
  32. # Bower dependency directory (https://bower.io/)
  33. bower_components
  34. # node-waf configuration
  35. .lock-wscript
  36. # Compiled binary addons (https://nodejs.org/api/addons.html)
  37. build/Release
  38. # Dependency directories
  39. node_modules
  40. jspm_packages/
  41. # C++ build debug directories
  42. cmake-build-debug
  43. # TypeScript v1 declaration files
  44. typings/
  45. # Optional npm cache directory
  46. .npm
  47. # Optional eslint cache
  48. .eslintcache
  49. # Optional REPL snapshot
  50. .node_repl_history
  51. # Output of 'npm pack'
  52. *.tgz
  53. # Yarn Integrity file
  54. .yarn-integrity
  55. # dotenv environment variables file
  56. .env
  57. # next.js build output
  58. .next
  59. #lerna-changelog
  60. .changelog
  61. #webpack build
  62. .dist/
  63. #editor workspace file
  64. .idea/
  65. .DS_Store
  66. .history
  67. examples