Skip to content

Commit

Permalink
Merge pull request #8 from psteinroe/chore/upgrade
Browse files Browse the repository at this point in the history
chore: upgrade deps
  • Loading branch information
psteinroe authored Dec 9, 2023
2 parents 12f9306 + e413f2a commit 067abdc
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 14 deletions.
16 changes: 6 additions & 10 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,21 +13,17 @@ jobs:
steps:
- uses: actions/checkout@v4

- uses: pnpm/[email protected]
- id: setup-bun
name: Setup Bun
uses: oven-sh/setup-bun@v1
with:
version: 8.x.x

- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: 16
cache: pnpm
bun-version: latest

- name: Install Dependencies
run: pnpm install --frozen-lockfile
run: bun install --frozen-lockfile

- name: Build Packages
run: pnpm run build --filter='./packages/*'
run: bun run build

- name: Create a release
id: changesets
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ fastify.register(fastifyJWT, {
Then, register the Supabase plugin.

```ts
import fastifySupabase from "@hellomateo/fastify-supabase";
import fastifySupabase from "@psteinroe/fastify-supabase";

fastify.register(fastifySupabase, {
url: SUPABASE_URL,
Expand Down
Binary file modified bun.lockb
Binary file not shown.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@
"ci:release": "changeset publish"
},
"peerDependencies": {
"@supabase/supabase-js": "^2.0.0"
"@supabase/supabase-js": "^2.0.0",
"@fastify/jwt": "^7.0.0"
},
"dependencies": {
"@fastify/error": "3.4.1",
Expand All @@ -56,8 +57,7 @@
"devDependencies": {
"bun-plugin-dts": "0.2.1",
"@biomejs/biome": "1.4.1",
"@changesets/cli": "2.27.0",
"@fastify/jwt": "7.2.4",
"@changesets/cli": "2.27.1",
"bun-types": "latest",
"fast-jwt": "3.3.2",
"fastify": "4.24.3",
Expand Down

0 comments on commit 067abdc

Please sign in to comment.