Skip to content

Commit

Permalink
chore: overhaul ignore configs (#11938)
Browse files Browse the repository at this point in the history
Co-authored-by: Ben McCann <[email protected]>
  • Loading branch information
hyunbinseo and benmccann committed May 30, 2024
1 parent c173b7a commit c63b340
Show file tree
Hide file tree
Showing 5 changed files with 49 additions and 13 deletions.
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
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
19 changes: 14 additions & 5 deletions packages/create-svelte/templates/default/.gitignore
Original file line number Diff line number Diff line change
@@ -1,12 +1,21 @@
.DS_Store
node_modules
/build

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

# OS
.DS_Store
Thumbs.db

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

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

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

# OS
.DS_Store
Thumbs.db

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

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

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

# OS
.DS_Store
Thumbs.db

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

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

0 comments on commit c63b340

Please sign in to comment.