diff --git a/CHANGELOG.md b/CHANGELOG.md index ac14045..f7ee94d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [3.2.2] - 2024-02-14 + +### Fixed + +- Correct path for `sass` field in `package.json`. + ## [3.2.1] - 2024-02-14 ### Added @@ -130,6 +136,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 This CHANGELOG.md was generated with the assistance of [ChatGPT by OpenAI](https://www.openai.com/research/chatgpt). +[3.2.2]: https://github.com/tofsjonas/sortable/releases/tag/3.2.2 [3.2.1]: https://github.com/tofsjonas/sortable/releases/tag/3.2.1 [3.2.0]: https://github.com/tofsjonas/sortable/releases/tag/3.2.0 [3.1.0]: https://github.com/tofsjonas/sortable/releases/tag/3.1.0 diff --git a/package.json b/package.json index 587ea89..4834aa9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "sortable-tablesort", - "version": "3.2.1", + "version": "3.2.2", "description": "A tiny, Vanilla/Plain JavaScript table sorter", "author": "Jonas Earendel", "license": "Unlicense", @@ -12,7 +12,7 @@ "main": "sortable.min.js", "module": "sortable.min.js", "style": "sortable.min.css", - "sass": "src/sortable.css", + "sass": "src/sortable.scss", "keywords": [ "sort", "html", diff --git a/sortable.d.ts b/sortable.d.ts index 4434cb3..9cf7b28 100644 --- a/sortable.d.ts +++ b/sortable.d.ts @@ -1,5 +1,5 @@ /** - * sortable v3.2.1 + * sortable v3.2.2 * * https://www.npmjs.com/package/sortable-tablesort * https://github.com/tofsjonas/sortable diff --git a/sortable.js b/sortable.js index 5ef7cfc..dc6514b 100644 --- a/sortable.js +++ b/sortable.js @@ -1,5 +1,5 @@ /** - * sortable v3.2.1 + * sortable v3.2.2 * * https://www.npmjs.com/package/sortable-tablesort * https://github.com/tofsjonas/sortable diff --git a/src/sortable.ts b/src/sortable.ts index 35e6f30..8564396 100644 --- a/src/sortable.ts +++ b/src/sortable.ts @@ -1,5 +1,5 @@ /** - * sortable v3.2.1 + * sortable v3.2.2 * * https://www.npmjs.com/package/sortable-tablesort * https://github.com/tofsjonas/sortable