emailengine-app 2.62.1 → 2.62.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/.ncurc.js +4 -1
- package/CHANGELOG.md +8 -0
- package/package.json +4 -1
- package/sbom.json +1 -1
- package/static/licenses.html +7 -7
- package/translations/messages.pot +1 -1
package/.ncurc.js
CHANGED
|
@@ -19,6 +19,9 @@ module.exports = {
|
|
|
19
19
|
'startbootstrap-sb-admin-2',
|
|
20
20
|
|
|
21
21
|
// Keep joi at version 17.x for hapi-swagger compatibility
|
|
22
|
-
'joi'
|
|
22
|
+
'joi',
|
|
23
|
+
|
|
24
|
+
// @asamuzakjp/css-color >=4.1.2 pulls in @csstools/* v4 which are pure ESM and break pkg bundling
|
|
25
|
+
'@asamuzakjp/css-color'
|
|
23
26
|
]
|
|
24
27
|
};
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [2.62.2](https://github.com/postalsys/emailengine/compare/v2.62.1...v2.62.2) (2026-02-07)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* include ESM [@csstools](https://github.com/csstools) packages as pkg assets ([df9f6d2](https://github.com/postalsys/emailengine/commit/df9f6d286b0fc2819edf0bf2f179dc0d6d2ce0d5))
|
|
9
|
+
* pin subdependency to avoid installing unsupported version ([045b8ce](https://github.com/postalsys/emailengine/commit/045b8ce1a28c9cf9eecb26723589c5dcb4a28c21))
|
|
10
|
+
|
|
3
11
|
## [2.62.1](https://github.com/postalsys/emailengine/compare/v2.62.0...v2.62.1) (2026-02-07)
|
|
4
12
|
|
|
5
13
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "emailengine-app",
|
|
3
|
-
"version": "2.62.
|
|
3
|
+
"version": "2.62.2",
|
|
4
4
|
"private": false,
|
|
5
5
|
"productTitle": "EmailEngine",
|
|
6
6
|
"description": "Email Sync Engine",
|
|
@@ -131,6 +131,9 @@
|
|
|
131
131
|
"supertest": "7.2.2",
|
|
132
132
|
"xgettext-template": "5.0.0"
|
|
133
133
|
},
|
|
134
|
+
"overrides": {
|
|
135
|
+
"@asamuzakjp/css-color": "4.1.1"
|
|
136
|
+
},
|
|
134
137
|
"engines": {
|
|
135
138
|
"node": ">=20.x"
|
|
136
139
|
},
|