.gitignore 775 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. # Logs
  2. logs
  3. *.log
  4. npm-debug.log*
  5. yarn-debug.log*
  6. yarn-error.log*
  7. pnpm-debug.log*
  8. lerna-debug.log*
  9. pnpm-lock.yaml
  10. node_modules
  11. .DS_Store
  12. dist
  13. *.local
  14. # Editor directories and files
  15. .idea
  16. *.suo
  17. *.ntvs*
  18. *.njsproj
  19. *.sln
  20. *.sw?
  21. .hbuilderx
  22. .stylelintcache
  23. .eslintcache
  24. # lock 文件还是不要了,我主要的版本写死就好了
  25. # pnpm-lock.yaml
  26. # package-lock.json
  27. # TIPS:如果某些文件已经加入了版本管理,现在重新加入 .gitignore 是不生效的,需要执行下面的操作
  28. # `git rm -r --cached .` 然后提交 commit 即可。
  29. # git rm -r --cached file1 file2 ## 针对某些文件
  30. # git rm -r --cached dir1 dir2 ## 针对某些文件夹
  31. # git rm -r --cached . ## 针对所有文件
  32. # 更新 uni-app 官方版本
  33. # npx @dcloudio/uvm@latest