Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: overhaul ignore configs #11938

Merged
merged 12 commits into from
May 30, 2024
5 changes: 5 additions & 0 deletions .changeset/ten-wolves-hug.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"create-svelte": patch
---

chore: overhaul ignore configs
13 changes: 0 additions & 13 deletions packages/create-svelte/shared/+eslint/.eslintignore

This file was deleted.

4 changes: 2 additions & 2 deletions packages/create-svelte/shared/+prettier/.prettierignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Ignore files for PNPM, NPM and YARN
pnpm-lock.yaml
# Package Managers
package-lock.json
pnpm-lock.yaml
yarn.lock
20 changes: 15 additions & 5 deletions packages/create-svelte/templates/default/.gitignore
Original file line number Diff line number Diff line change
@@ -1,12 +1,22 @@
.DS_Store
node_modules
/build

# Output
.output
hyunbinseo marked this conversation as resolved.
Show resolved Hide resolved
.vercel
/.svelte-kit
/package
/build
/dist

benmccann marked this conversation as resolved.
Show resolved Hide resolved
# OS
.DS_Store
Thumbs.db

# Env
.env
.env.*
hyunbinseo marked this conversation as resolved.
Show resolved Hide resolved
!.env.example
.vercel
.output
!.env.test

# Vite
vite.config.js.timestamp-*
vite.config.ts.timestamp-*
17 changes: 15 additions & 2 deletions packages/create-svelte/templates/skeleton/.gitignore
Original file line number Diff line number Diff line change
@@ -1,10 +1,23 @@
.DS_Store
node_modules
/build

# Output
.output
.vercel
/.svelte-kit
/build
/dist
/package
benmccann marked this conversation as resolved.
Show resolved Hide resolved

benmccann marked this conversation as resolved.
Show resolved Hide resolved
# OS
.DS_Store
Thumbs.db

# Env
.env
.env.*
!.env.example
!.env.test

# Vite
vite.config.js.timestamp-*
vite.config.ts.timestamp-*
16 changes: 14 additions & 2 deletions packages/create-svelte/templates/skeletonlib/.gitignore
Original file line number Diff line number Diff line change
@@ -1,11 +1,23 @@
.DS_Store
node_modules

# Output
.output
.vercel
/.svelte-kit
/build
/dist
/.svelte-kit
/package

benmccann marked this conversation as resolved.
Show resolved Hide resolved
# OS
.DS_Store
Thumbs.db

# Env
.env
.env.*
!.env.example
!.env.test

# Vite
vite.config.js.timestamp-*
vite.config.ts.timestamp-*
Loading