We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 869669c commit b58af12Copy full SHA for b58af12
.changeset/early-planes-love.md
@@ -0,0 +1,5 @@
1
+---
2
+'@sveltejs/repl': patch
3
4
+
5
+Fix exports
packages/repl/package.json
@@ -12,15 +12,22 @@
12
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json --watch"
13
},
14
"exports": {
15
+ "./package.json": "./package.json",
16
".": {
17
"types": "./dist/index.d.ts",
- "svelte": "./dist/index.js"
18
+ "svelte": "./dist/index.js",
19
+ "default": "./dist/index.js"
20
+ }
21
+ },
22
+ "typesVersions": {
23
+ ">4.0": {
24
+ "*": [
25
+ "./dist/index.d.ts"
26
+ ]
27
}
28
29
"files": [
- "dist",
- "!dist/**/*.test.*",
- "!dist/**/*.spec.*"
30
+ "dist"
31
],
32
"peerDependencies": {
33
"svelte": "^3.54.0"
0 commit comments