Skip to content

Commit

Permalink
Update to latest SvelteKit PKCE auth helpers (#16)
Browse files Browse the repository at this point in the history
Add 0.10.0 auth helpers with pkce support
Moving migrations to use the supabase cli instead of ley
Add invite code page for inviteUserByEmail to work with pkce
  • Loading branch information
silentworks committed Aug 11, 2023
1 parent 570a91b commit 8cccbeb
Show file tree
Hide file tree
Showing 36 changed files with 1,113 additions and 538 deletions.
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ node_modules
.env
.env.*
!.env.example
supabase/**/*.sql

# Ignore files for PNPM, NPM and YARN
pnpm-lock.yaml
Expand Down
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
static/**
build/**
node_modules/**
supabase/**/*.sql
39 changes: 20 additions & 19 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,32 +16,33 @@
"m:status": "ley status"
},
"devDependencies": {
"@supabase/supabase-js": "^2.15.0",
"@sveltejs/adapter-node": "^1.2.3",
"@sveltejs/kit": "^1.15.2",
"@supabase/supabase-js": "^2.32.0",
"@sveltejs/adapter-node": "^1.3.1",
"@sveltejs/kit": "^1.22.5",
"@types/cookie": "^0.5.1",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"dotenv": "^16.0.3",
"eslint": "^8.37.0",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-svelte3": "^4.0.0",
"eslint-plugin-svelte": "^2.32.4",
"ley": "^0.8.1",
"pg-connection-string": "^2.5.0",
"pg-connection-string": "^2.6.0",
"postgres": "^3.3.4",
"prettier": "~2.8.7",
"prettier-plugin-svelte": "^2.10.0",
"svelte": "^3.58.0",
"svelte-check": "^3.1.4",
"svelte-preprocess": "^5.0.3",
"tslib": "^2.5.0",
"typescript": "^5.0.3",
"vite": "^4.2.1"
"prettier": "~3.0.1",
"prettier-plugin-svelte": "^3.0.3",
"svelte": "^4.1.2",
"svelte-check": "^3.4.3",
"svelte-preprocess": "^5.0.4",
"sveltekit-flash-message": "^2.1.3",
"tslib": "^2.5.2",
"typescript": "^5.0.4",
"vite": "^4.3.9"
},
"type": "module",
"dependencies": {
"@supabase/auth-helpers-sveltekit": "^0.9.3",
"@supabase/auth-helpers-sveltekit": "^0.10.2",
"email-regex": "^5.0.0",
"vest": "^4.6.9"
"vest": "^4.6.11"
}
}
}
Loading

0 comments on commit 8cccbeb

Please sign in to comment.