Skip to content

Commit 3ba8d57

Browse files
chore: release eslint-plugin-svelte (#793)
This PR was opened by the [Changesets release](https://github.com/changesets/action) GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated. # Releases ## eslint-plugin-svelte@2.40.0 ### Minor Changes - [#792](#792) [`cb722bc`](cb722bc) Thanks [@ota-meshi](https://github.com/ota-meshi)! - feat: update svelte-eslint-parser to 0.39 - [#796](#796) [`5e4d264`](5e4d264) Thanks [@ota-meshi](https://github.com/ota-meshi)! - feat: improve `svelte/valid-compile` to use `svelte.config.js`'s `onwarn` from the parser. - [#794](#794) [`7894f82`](7894f82) Thanks [@ota-meshi](https://github.com/ota-meshi)! - feat: improve `svelte/valid-prop-names-in-kit-pages` to use `svelte.config.js` data from the parser. - [#794](#794) [`7894f82`](7894f82) Thanks [@ota-meshi](https://github.com/ota-meshi)! - feat: improve `svelte/no-export-load-in-svelte-module-in-kit-pages` to use `svelte.config.js` data from the parser. ### Patch Changes - [#795](#795) [`df947a7`](df947a7) Thanks [@baseballyama](https://github.com/baseballyama)! - deps: update `svelte-eslint-parser` to 0.39.1 to set `svelteFeatures.runes` to `true` by default for Svelte 5 - [#797](#797) [`f6d4e4c`](f6d4e4c) Thanks [@ota-meshi](https://github.com/ota-meshi)! - fix: `svelte/valid-compile` to use verbatimModuleSyntax to work with TS v5.5. Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 5e4d264 commit 3ba8d57

File tree

9 files changed

+20
-32
lines changed

9 files changed

+20
-32
lines changed

.changeset/neat-onions-applaud.md

-5
This file was deleted.

.changeset/onwarn.md

-5
This file was deleted.

.changeset/seven-fans-study.md

-5
This file was deleted.

.changeset/silent-lamps-chew.md

-5
This file was deleted.

.changeset/silent-lamps-chew2.md

-5
This file was deleted.

.changeset/tough-jobs-rest.md

-5
This file was deleted.

packages/eslint-plugin-svelte/CHANGELOG.md

+18
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# eslint-plugin-svelte
22

3+
## 2.40.0
4+
5+
### Minor Changes
6+
7+
- [#792](https://github.com/sveltejs/eslint-plugin-svelte/pull/792) [`cb722bc`](https://github.com/sveltejs/eslint-plugin-svelte/commit/cb722bc9d455f4caeaa4dfdf5771dc95f06b26b8) Thanks [@ota-meshi](https://github.com/ota-meshi)! - feat: update svelte-eslint-parser to 0.39
8+
9+
- [#796](https://github.com/sveltejs/eslint-plugin-svelte/pull/796) [`5e4d264`](https://github.com/sveltejs/eslint-plugin-svelte/commit/5e4d26495a377860f7db2ba042993fd686d41a8f) Thanks [@ota-meshi](https://github.com/ota-meshi)! - feat: improve `svelte/valid-compile` to use `svelte.config.js`'s `onwarn` from the parser.
10+
11+
- [#794](https://github.com/sveltejs/eslint-plugin-svelte/pull/794) [`7894f82`](https://github.com/sveltejs/eslint-plugin-svelte/commit/7894f82263d114c948cfe46a041c43a93a5d9249) Thanks [@ota-meshi](https://github.com/ota-meshi)! - feat: improve `svelte/valid-prop-names-in-kit-pages` to use `svelte.config.js` data from the parser.
12+
13+
- [#794](https://github.com/sveltejs/eslint-plugin-svelte/pull/794) [`7894f82`](https://github.com/sveltejs/eslint-plugin-svelte/commit/7894f82263d114c948cfe46a041c43a93a5d9249) Thanks [@ota-meshi](https://github.com/ota-meshi)! - feat: improve `svelte/no-export-load-in-svelte-module-in-kit-pages` to use `svelte.config.js` data from the parser.
14+
15+
### Patch Changes
16+
17+
- [#795](https://github.com/sveltejs/eslint-plugin-svelte/pull/795) [`df947a7`](https://github.com/sveltejs/eslint-plugin-svelte/commit/df947a7161fe97021da37f4fcde44fe9923c0a22) Thanks [@baseballyama](https://github.com/baseballyama)! - deps: update `svelte-eslint-parser` to 0.39.1 to set `svelteFeatures.runes` to `true` by default for Svelte 5
18+
19+
- [#797](https://github.com/sveltejs/eslint-plugin-svelte/pull/797) [`f6d4e4c`](https://github.com/sveltejs/eslint-plugin-svelte/commit/f6d4e4c974924ef5da1a970d88f04b81a36e19b6) Thanks [@ota-meshi](https://github.com/ota-meshi)! - fix: `svelte/valid-compile` to use verbatimModuleSyntax to work with TS v5.5.
20+
321
## 2.39.5
422

523
### Patch Changes

packages/eslint-plugin-svelte/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-plugin-svelte",
3-
"version": "2.39.5",
3+
"version": "2.40.0",
44
"description": "ESLint plugin for Svelte using AST",
55
"repository": "git+https://github.com/sveltejs/eslint-plugin-svelte.git",
66
"homepage": "https://sveltejs.github.io/eslint-plugin-svelte",

packages/eslint-plugin-svelte/src/meta.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
// This file has been automatically generated,
33
// in order to update its content execute "pnpm run update"
44
export const name = 'eslint-plugin-svelte';
5-
export const version = '2.39.5';
5+
export const version = '2.40.0';

0 commit comments

Comments
 (0)