Skip to content

Commit

Permalink
style and sass fields in package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
tofsjonas committed Feb 14, 2024
1 parent c6826cf commit 6519124
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.1] - 2024-02-14

### Added

- Introduced `style` and `sass` fields in `package.json` to enhance compatibility with modern JavaScript tooling and environments.

## [3.2.0] - 2024-02-14

### Added
Expand Down Expand Up @@ -124,6 +130,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.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
[3.0.0]: https://github.com/tofsjonas/sortable/releases/tag/3.0.0
Expand Down
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sortable-tablesort",
"version": "3.2.0",
"version": "3.2.1",
"description": "A tiny, Vanilla/Plain JavaScript table sorter",
"author": "Jonas Earendel",
"license": "Unlicense",
Expand All @@ -11,6 +11,8 @@
},
"main": "sortable.min.js",
"module": "sortable.min.js",
"style": "sortable.min.css",
"sass": "src/sortable.css",
"keywords": [
"sort",
"html",
Expand Down
2 changes: 1 addition & 1 deletion sortable.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* sortable v3.2.0
* sortable v3.2.1
*
* https://www.npmjs.com/package/sortable-tablesort
* https://github.com/tofsjonas/sortable
Expand Down
2 changes: 1 addition & 1 deletion sortable.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* sortable v3.2.0
* sortable v3.2.1
*
* https://www.npmjs.com/package/sortable-tablesort
* https://github.com/tofsjonas/sortable
Expand Down
2 changes: 1 addition & 1 deletion src/sortable.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* sortable v3.2.0
* sortable v3.2.1
*
* https://www.npmjs.com/package/sortable-tablesort
* https://github.com/tofsjonas/sortable
Expand Down

0 comments on commit 6519124

Please sign in to comment.