.gitignore 839 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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. node_modules
  10. .DS_Store
  11. dist
  12. *.local
  13. env
  14. manifest.config.ts
  15. # Editor directories and files
  16. .idea
  17. *.suo
  18. *.ntvs*
  19. *.njsproj
  20. *.sln
  21. *.sw?
  22. .hbuilderx
  23. .stylelintcache
  24. .eslintcache
  25. docs/.vitepress/dist
  26. docs/.vitepress/cache
  27. src/types
  28. # lock 文件还是不要了,我主要的版本写死就好了
  29. # pnpm-lock.yaml
  30. # package-lock.json
  31. # TIPS:如果某些文件已经加入了版本管理,现在重新加入 .gitignore 是不生效的,需要执行下面的操作
  32. # `git rm -r --cached .` 然后提交 commit 即可。
  33. # git rm -r --cached file1 file2 ## 针对某些文件
  34. # git rm -r --cached dir1 dir2 ## 针对某些文件夹
  35. # git rm -r --cached . ## 针对所有文件
  36. # 更新 uni-app 官方版本
  37. # npx @dcloudio/uvm@latest