@soleil-se/app-util 5.14.1 → 5.14.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +4 -0
- package/package.json +4 -2
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,10 @@ All notable changes to this project will be documented in this file.
|
|
|
7
7
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
8
8
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
9
9
|
|
|
10
|
+
## [5.14.2] - 2026-05-19
|
|
11
|
+
|
|
12
|
+
- Add direct export for `localized-compare` in package.json.
|
|
13
|
+
|
|
10
14
|
## [5.14.1] - 2026-05-15
|
|
11
15
|
|
|
12
16
|
- Add exports to package.json for better support in ESM environments.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@soleil-se/app-util",
|
|
3
|
-
"version": "5.14.
|
|
3
|
+
"version": "5.14.2",
|
|
4
4
|
"description": "Utility functions for WebApps, RESTApps and Widgets in Sitevision.",
|
|
5
5
|
"main": "./common/index.js",
|
|
6
6
|
"author": "Soleil AB",
|
|
@@ -27,6 +27,7 @@
|
|
|
27
27
|
},
|
|
28
28
|
"exports": {
|
|
29
29
|
".": "./common/index.js",
|
|
30
|
+
"./localized-compare": "./common/localized-compare/index.js",
|
|
30
31
|
"./client": "./client/index.js",
|
|
31
32
|
"./client/fetch-json": "./client/fetch-json/index.js",
|
|
32
33
|
"./client/prevent-default": "./client/prevent-default/index.js",
|
|
@@ -40,5 +41,6 @@
|
|
|
40
41
|
"./server/svelte/3": "./server/svelte/3/index.js",
|
|
41
42
|
"./server/svelte/4": "./server/svelte/4/index.js",
|
|
42
43
|
"./server/svelte/5": "./server/svelte/5/index.js"
|
|
43
|
-
}
|
|
44
|
+
},
|
|
45
|
+
"gitHead": "83e99e91b98fbba251d2fc21fcab45e3efc5774e"
|
|
44
46
|
}
|