Skip to content

Commit 330cd03

Browse files
committed
package update + version bump
1 parent 448513d commit 330cd03

File tree

6 files changed

+1387
-918
lines changed

6 files changed

+1387
-918
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ All notable changes to this project will be documented in this file.
77
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
88
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
99

10+
## [4.0.2] - 2025-05-10
11+
12+
### Added
13+
14+
- Handles empty `tr` by returning an empty string.
15+
1016
## [4.0.1] - 2025-02-26
1117

1218
### Fixed
@@ -160,6 +166,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
160166

161167
- First release
162168

169+
[4.0.2]: https://github.com/tofsjonas/sortable/releases/tag/4.0.2
163170
[4.0.1]: https://github.com/tofsjonas/sortable/releases/tag/4.0.1
164171
[4.0.0]: https://github.com/tofsjonas/sortable/releases/tag/4.0.0
165172
[3.2.3]: https://github.com/tofsjonas/sortable/releases/tag/3.2.3

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -538,3 +538,5 @@ Combine this with `<table class="sortable asc">` to reverse the sort order. Or d
538538
- ...[Steve Wirt](https://github.com/swirtSJW) for lifting the Accessibility issue! 🦾️
539539

540540
- ...[GazHay](https://github.com/gazhay) for the [sort events](#sort-events) idea!
541+
542+
- ...[deverac](https://github.com/deverac) for the empty `tr` bug fix!

dist/esm/sortable.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* sortable v4.0.1
2+
* sortable v4.0.2
33
*
44
* https://www.npmjs.com/package/sortable-tablesort
55
* https://github.com/tofsjonas/sortable

package.json

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sortable-tablesort",
3-
"version": "4.0.1",
3+
"version": "4.0.2",
44
"description": "A tiny, Vanilla/Plain JavaScript table sorter",
55
"private": false,
66
"type": "module",
@@ -27,42 +27,42 @@
2727
"serve": "vite preview --port 3009"
2828
},
2929
"devDependencies": {
30-
"@eslint/js": "^9.21.0",
31-
"@playwright/test": "^1.50.1",
30+
"@eslint/js": "^9.26.0",
31+
"@playwright/test": "^1.52.0",
3232
"@rollup/plugin-terser": "^0.4.4",
3333
"@rollup/plugin-typescript": "^12.1.2",
3434
"@testing-library/dom": "^10.4.0",
3535
"@testing-library/jest-dom": "^6.6.3",
3636
"@types/jsdom": "^21.1.7",
37-
"@types/node": "^22.13.5",
38-
"@typescript-eslint/eslint-plugin": "^8.25.0",
39-
"@typescript-eslint/parser": "^8.25.0",
40-
"autoprefixer": "^10.4.20",
37+
"@types/node": "^22.15.18",
38+
"@typescript-eslint/eslint-plugin": "^8.32.1",
39+
"@typescript-eslint/parser": "^8.32.1",
40+
"autoprefixer": "^10.4.21",
4141
"babel-jest": "^29.7.0",
4242
"cross-env": "^7.0.3",
43-
"esbuild": "^0.25.0",
44-
"eslint": "^9.21.0",
45-
"eslint-config-prettier": "^10.0.2",
46-
"eslint-plugin-prettier": "^5.2.3",
47-
"globals": "^16.0.0",
43+
"esbuild": "^0.25.4",
44+
"eslint": "^9.26.0",
45+
"eslint-config-prettier": "^10.1.5",
46+
"eslint-plugin-prettier": "^5.4.0",
47+
"globals": "^16.1.0",
4848
"google-closure-compiler": "^20240317.0.0",
4949
"husky": "^9.1.7",
5050
"jest": "^29.7.0",
51-
"jsdom": "^26.0.0",
51+
"jsdom": "^26.1.0",
5252
"postcss": "^8.5.3",
53-
"prettier": "^3.5.2",
53+
"prettier": "^3.5.3",
5454
"rimraf": "^6.0.1",
55-
"rollup": "^4.34.8",
55+
"rollup": "^4.40.2",
5656
"rollup-plugin-scss": "^4.0.1",
57-
"sass": "^1.85.1",
57+
"sass": "^1.88.0",
5858
"tslib": "^2.8.1",
59-
"tsx": "^4.19.3",
60-
"typescript": "^5.7.3",
61-
"vite": "^6.2.0",
62-
"vitest": "^3.0.7"
59+
"tsx": "^4.19.4",
60+
"typescript": "^5.8.3",
61+
"vite": "^6.3.5",
62+
"vitest": "^3.1.3"
6363
},
6464
"pnpm": {
6565
"neverBuiltDependencies": []
6666
},
67-
"packageManager": "pnpm@10.5.1+sha512.c424c076bd25c1a5b188c37bb1ca56cc1e136fbf530d98bcb3289982a08fd25527b8c9c4ec113be5e3393c39af04521dd647bcf1d0801eaf8ac6a7b14da313af"
67+
"packageManager": "pnpm@10.11.0"
6868
}

0 commit comments

Comments
 (0)