Skip to content

Commit

Permalink
feat: update svelte to v5.0.0-next.16 (#635)
Browse files Browse the repository at this point in the history
  • Loading branch information
ota-meshi authored Dec 2, 2023
1 parent 260c878 commit ec3f1cf
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 6 deletions.
5 changes: 5 additions & 0 deletions .changeset/shaggy-mirrors-join.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"eslint-plugin-svelte": patch
---

feat: update svelte to v5.0.0-next.16
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
},
"peerDependencies": {
"eslint": "^7.0.0 || ^8.0.0-0",
"svelte": "^3.37.0 || ^4.0.0 || ^5.0.0-next.8"
"svelte": "^3.37.0 || ^4.0.0 || ^5.0.0-next.16"
},
"peerDependenciesMeta": {
"svelte": {
Expand Down Expand Up @@ -164,7 +164,7 @@
"stylelint": "^15.0.0",
"stylelint-config-standard": "^34.0.0",
"stylus": "^0.62.0",
"svelte": "^5.0.0-next.8",
"svelte": "^5.0.0-next.16",
"svelte-adapter-ghpages": "0.1.0",
"svelte-i18n": "^4.0.0",
"tslib": "^2.5.0",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<script>
// svelte-ignore state-rune-not-mutated
// svelte-ignore state-not-mutated
let mutable = $state(42);
// svelte-ignore state-rune-not-mutated
// svelte-ignore state-not-mutated
let immutable = $state(42);
export function update(a) {
immutable = a;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script>
// svelte-ignore state-rune-not-mutated
// svelte-ignore state-not-mutated
let immutable = $state(42);
</script>

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<script>
let mutable = $state(42);
// svelte-ignore state-rune-not-mutated
// svelte-ignore state-not-mutated
let immutable = $state(42);
export function update(a) {
mutable = a;
Expand Down

0 comments on commit ec3f1cf

Please sign in to comment.