Skip to content

Commit

Permalink
v0.5.4
Browse files Browse the repository at this point in the history
  • Loading branch information
janosh committed Mar 17, 2023
1 parent e00ca0e commit 95df0dc
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
6 changes: 6 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file. Dates are d

<!-- auto-changelog-above -->

#### [v0.5.4](https://github.com/janosh/svelte-toc/compare/v0.5.3...v0.5.4)

> 16 March 2023
- Fix new timeout callback for keepActiveTocItemInView=true breaking page scrolling [`#39`](https://github.com/janosh/svelte-toc/pull/39)

#### [v0.5.3](https://github.com/janosh/svelte-toc/compare/v0.5.2...v0.5.3)

> 12 March 2023
Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"homepage": "https://janosh.github.io/svelte-toc",
"repository": "https://github.com/janosh/svelte-toc",
"license": "MIT",
"version": "0.5.3",
"version": "0.5.4",
"type": "module",
"svelte": "./dist/index.js",
"bugs": "https://github.com/janosh/svelte-toc/issues",
Expand All @@ -23,12 +23,12 @@
"update-coverage": "vitest tests/unit --run --coverage && npx istanbul-badges-readme"
},
"dependencies": {
"svelte": "^3.56.0"
"svelte": "^3.57.0"
},
"devDependencies": {
"@playwright/test": "1.31.2",
"@sveltejs/adapter-static": "^2.0.1",
"@sveltejs/kit": "^1.11.0",
"@sveltejs/kit": "^1.12.0",
"@sveltejs/package": "^2.0.2",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
Expand All @@ -47,8 +47,8 @@
"svelte-preprocess": "^5.0.2",
"svelte-zoo": "^0.4.3",
"svelte2tsx": "^0.6.10",
"typescript": "4.9.5",
"vite": "^4.1.4",
"typescript": "5.0.2",
"vite": "^4.2.0",
"vitest": "^0.29.3"
},
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"strict": true,
"module": "esnext",
"target": "esnext",
"moduleResolution": "node",
"moduleResolution": "bundler",

// Svelte Preprocess cannot figure out whether you have a value or a type, so tell TypeScript
// to enforce using `import type` instead of `import` for Types.
Expand Down

0 comments on commit 95df0dc

Please sign in to comment.