Skip to content

Commit

Permalink
feat(sveltekit): Fix export fields in package.json (#608)
Browse files Browse the repository at this point in the history
* feat(sveltekit): Fix export fields in package.json

* Add changeset

---------

Co-authored-by: Andrew Smith <a.smith@silentworks.co.uk>
  • Loading branch information
lachlancollins and silentworks authored Aug 2, 2023
1 parent 8c77550 commit 002e6f9
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 5 deletions.
5 changes: 5 additions & 0 deletions .changeset/healthy-clocks-approve.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@supabase/auth-helpers-sveltekit': patch
---

Fix export fields in package.json
12 changes: 7 additions & 5 deletions packages/sveltekit/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,18 @@
"version": "0.10.1",
"description": "A collection of framework specific Auth utilities for working with Supabase.",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public"
},
"exports": {
"./package.json": "./package.json",
".": "./dist/index.js"
},
"files": [
"dist"
],
Expand Down

0 comments on commit 002e6f9

Please sign in to comment.