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

v4 #236

Closed
wants to merge 16 commits into from
Closed

v4 #236

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 0 additions & 24 deletions .eslintignore

This file was deleted.

64 changes: 0 additions & 64 deletions .eslintrc.cjs

This file was deleted.

37 changes: 23 additions & 14 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -1,16 +1,25 @@
.DS_Store
.svelte-kit
node_modules
/build
/package
.env
.env.*
!.env.example
vite.config.js*
apps/site/.vercel
**/.DS_Store
**/node_modules
**/build
**/dist
**/.svelte-kit
**/package
**/docs
**/.env
**/.env.*
**/!.env.example
**/CHANGELOG.md
**/.changeset
**/static
**/coverage
**/reash

# Ignore files for PNPM, NPM and YARN
pnpm-lock.yaml
pnpm-workspace.yaml
package-lock.json
yarn.lock
**/pnpm-lock.yaml
**/package-lock.json
**/yarn.lock

# Utility and CI tools
**/zarf
**/scripts
**/examplePhoneNumbers.ts
23 changes: 0 additions & 23 deletions .prettierrc.cjs

This file was deleted.

24 changes: 0 additions & 24 deletions apps/site/.eslintignore

This file was deleted.

87 changes: 0 additions & 87 deletions apps/site/.eslintrc.cjs

This file was deleted.

23 changes: 0 additions & 23 deletions apps/site/.prettierignore

This file was deleted.

9 changes: 0 additions & 9 deletions apps/site/.prettierrc.cjs

This file was deleted.

49 changes: 18 additions & 31 deletions apps/site/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,47 +25,34 @@
"scripts": {
"build": "vite build",
"dev": "vite dev",
"eslint": "eslint --ext .js,.ts,.svelte .",
"eslint:fix": "eslint --fix",
"lint": "npm run prettier:check && npm run eslint && npm run ts && npm run svelte-check",
"lint:fix": "npm run eslint:fix && npm run prettier:fix",
"preview": "vite preview",
"sync": "svelte-kit sync",
"test": "playwright test",
"ts": "tsc --noEmit",
"prettier:check": "prettier --check .",
"prettier:fix": "prettier --write .",
"svelte-check": "svelte-kit sync && svelte-check --ignore 'dist,build,coverage,.svelte-kit,package' --fail-on-warnings"
"svelte-check": "svelte-kit sync && svelte-check --ignore 'dist,build,coverage,.svelte-kit,package' --fail-on-warnings --no-tsconfig"
},
"dependencies": {
"svelte-tel-input": "workspace:*",
"svelte": "^4.2.18"
"svelte": "^5.7.1"
},
"devDependencies": {
"@macfja/svelte-persistent-store": "^2.4.1",
"@playwright/test": "^1.45.0",
"@sveltejs/adapter-static": "^3.0.2",
"@sveltejs/kit": "^2.5.17",
"@sveltejs/vite-plugin-svelte": "^3.1.1",
"@types/micromatch": "^4.0.8",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.14.1",
"autoprefixer": "^10.4.19",
"cssnano": "^7.0.3",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.41.0",
"postcss": "^8.4.38",
"prettier": "^3.3.2",
"prettier-plugin-svelte": "^3.2.5",
"@macfja/svelte-persistent-store": "^2.4.2",
"@playwright/test": "^1.49.0",
"@sveltejs/adapter-static": "^3.0.6",
"@sveltejs/kit": "^2.9.0",
"@sveltejs/vite-plugin-svelte": "^5.0.1",
"@types/micromatch": "^4.0.9",
"autoprefixer": "^10.4.20",
"cssnano": "^7.0.6",
"dotenv": "^16.4.7",
"postcss": "^8.4.49",
"schema-dts": "^1.1.2",
"svelte-check": "^3.8.4",
"svelte2tsx": "^0.7.13",
"tailwindcss": "^3.4.4",
"tslib": "^2.6.3",
"typescript": "^5.5.2",
"vite": "^5.3.1"
"svelte-check": "^4.1.1",
"svelte2tsx": "^0.7.30",
"tailwindcss": "^3.4.16",
"tslib": "^2.8.1",
"typescript": "^5.7.2",
"vite": "^6.0.3"
},
"type": "module",
"license": "MIT"
Expand Down
Loading
Loading