.npmignore 361 B

123456789101112131415161718
  1. # 忽略模板中的 node_modules
  2. templates/**/node_modules
  3. # 忽略模板中的 .svelte-kit
  4. templates/**/.svelte-kit
  5. # 忽略模板中的 lock 文件
  6. templates/**/bun.lock
  7. templates/**/bun.lockb
  8. templates/**/pnpm-lock.yaml
  9. templates/**/package-lock.json
  10. # 忽略模板中的构建产物
  11. templates/**/dist
  12. templates/**/build
  13. # 忽略 .DS_Store
  14. **/.DS_Store