Skip to content

Commit 907ba80

Browse files
authored
Allow any version of svelte greater than 1.44.0
Currently there's ugly warnings in sapper because svelte-loader believes it is incompatible with sapper 2. It does not appear to be _at all_ incompatible with v2 though. The problem is that there are really two versions to keep track of in svelte: 1. The compiler API. (The part that matters for svelte-loader) 2. The svelte language itself. (The part that got svelte bumped to v2). Both are interesting. Both need to be tracked. But they should probably be tracked in separate packages to allow more specific dependencies. (So, for example, you could lock into the compiler API at `^1.44.0` but the language at '2.x').
1 parent ca1b71b commit 907ba80

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"svelte": "^1.60.0"
3030
},
3131
"peerDependencies": {
32-
"svelte": "^1.44.0"
32+
"svelte": ">1.44.0"
3333
},
3434
"repository": {
3535
"type": "git",

0 commit comments

Comments
 (0)