Skip to content

Commit

Permalink
chore: upgrade sveltekit for svelte package
Browse files Browse the repository at this point in the history
  • Loading branch information
stepan662 committed Oct 4, 2024
1 parent 48e0583 commit c11fef2
Show file tree
Hide file tree
Showing 31 changed files with 1,208 additions and 3,343 deletions.
14 changes: 0 additions & 14 deletions packages/svelte/.eslintignore

This file was deleted.

27 changes: 0 additions & 27 deletions packages/svelte/.eslintrc.cjs

This file was deleted.

25 changes: 19 additions & 6 deletions packages/svelte/.gitignore
Original file line number Diff line number Diff line change
@@ -1,9 +1,22 @@
.DS_Store
node_modules
/build

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

# OS
.DS_Store
Thumbs.db

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

/coverage
# Vite
vite.config.js.timestamp-*
vite.config.ts.timestamp-*
1 change: 1 addition & 0 deletions packages/svelte/.npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
engine-strict=true
16 changes: 2 additions & 14 deletions packages/svelte/.prettierignore
Original file line number Diff line number Diff line change
@@ -1,16 +1,4 @@
.DS_Store
node_modules
/build
/.svelte-kit
/package
.env.local
.env.*.local

**/i18n/*.json
CHANGELOG.md
static/style.css

# Ignore files for PNPM, NPM and YARN
pnpm-lock.yaml
# Package Managers
package-lock.json
pnpm-lock.yaml
yarn.lock
19 changes: 6 additions & 13 deletions packages/svelte/.prettierrc
Original file line number Diff line number Diff line change
@@ -1,15 +1,8 @@
{
"singleQuote": true,
"trailingComma": "es5",
"pluginSearchDirs": [
"."
],
"overrides": [
{
"files": "*.svelte",
"options": {
"parser": "svelte"
}
}
]
"useTabs": true,
"singleQuote": true,
"trailingComma": "none",
"printWidth": 100,
"plugins": ["prettier-plugin-svelte"],
"overrides": [{ "files": "*.svelte", "options": { "parser": "svelte" } }]
}
Loading

0 comments on commit c11fef2

Please sign in to comment.