Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: sveltejs/svelte-eslint-parser
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.0.0
Choose a base ref
...
head repository: sveltejs/svelte-eslint-parser
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.0.1
Choose a head ref
  • 4 commits
  • 3 files changed
  • 4 contributors

Commits on Feb 28, 2025

  1. chore(deps): update dependency typescript to ~5.8.0 (#679)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Feb 28, 2025
    Copy the full SHA
    8d181f0 View commit details

Commits on Mar 3, 2025

  1. chore(deps): update typescript-eslint monorepo to ~8.26.0 (#680)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Mar 3, 2025
    Copy the full SHA
    e427b04 View commit details

Commits on Mar 5, 2025

  1. fix: align required Node version with ESLint (#681)

    baseballyama authored Mar 5, 2025
    Copy the full SHA
    edb63e2 View commit details
  2. chore: release svelte-eslint-parser (#682)

    Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
    github-actions[bot] and github-actions[bot] authored Mar 5, 2025
    Copy the full SHA
    7543ddf View commit details
Showing with 12 additions and 6 deletions.
  1. +6 −0 CHANGELOG.md
  2. +5 −5 package.json
  3. +1 −1 src/meta.ts
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# svelte-eslint-parser

## 1.0.1

### Patch Changes

- [#681](https://github.com/sveltejs/svelte-eslint-parser/pull/681) [`edb63e2`](https://github.com/sveltejs/svelte-eslint-parser/commit/edb63e213fae5e72604d45841b357f158d16fd3b) Thanks [@baseballyama](https://github.com/baseballyama)! - fix: align required Node version with ESLint

## 1.0.0

### Major Changes
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "svelte-eslint-parser",
"version": "1.0.0",
"version": "1.0.1",
"description": "Svelte parser for ESLint",
"repository": "git+https://github.com/sveltejs/svelte-eslint-parser.git",
"homepage": "https://github.com/sveltejs/svelte-eslint-parser#readme",
@@ -12,7 +12,7 @@
"license": "MIT",
"packageManager": "pnpm@9.15.6",
"engines": {
"node": "^18.20.4 || ^20.18.0 || >=22.10.0"
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
},
"type": "module",
"main": "lib/index.js",
@@ -78,8 +78,8 @@
"@types/node": "^22.10.1",
"@types/semver": "^7.5.8",
"@typescript-eslint/eslint-plugin": "^8.16.0",
"@typescript-eslint/parser": "~8.25.0",
"@typescript-eslint/types": "~8.25.0",
"@typescript-eslint/parser": "~8.26.0",
"@typescript-eslint/types": "~8.26.0",
"benchmark": "^2.1.4",
"c8": "^10.1.2",
"chai": "^5.0.0",
@@ -109,7 +109,7 @@
"svelte": "^5.9.0",
"svelte2tsx": "^0.7.28",
"tsx": "^4.19.2",
"typescript": "~5.7.2",
"typescript": "~5.8.0",
"typescript-eslint": "^8.16.0",
"typescript-eslint-parser-for-extra-files": "^0.7.0"
},
2 changes: 1 addition & 1 deletion src/meta.ts
Original file line number Diff line number Diff line change
@@ -2,4 +2,4 @@
// This file has been automatically generated,
// in order to update its content execute "pnpm run build:meta"
export const name = "svelte-eslint-parser";
export const version = "1.0.0";
export const version = "1.0.1";