@signageos/lib 10.14.1 → 10.14.2-master.1807
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 +2 -2
- package/tools/check-deps.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
|
|
5
5
|
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
|
+
## [Unreleased]
|
|
8
|
+
### Fixed
|
|
9
|
+
- Power Timer logic accepts any number of timers with type in `TIMER_${number}` format
|
|
10
|
+
|
|
7
11
|
## [10.14.1] - 2023-03-31
|
|
8
12
|
### Fixed
|
|
9
13
|
- `locked` decorator works in Node 6 >=
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@signageos/lib",
|
|
3
|
-
"version": "10.14.
|
|
3
|
+
"version": "10.14.2-master.1807",
|
|
4
4
|
"main": "./dist",
|
|
5
5
|
"files": [
|
|
6
6
|
"tools",
|
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
"@types/raven": "2.5.1",
|
|
74
74
|
"@types/redis": "2.8.16",
|
|
75
75
|
"@types/rsync": "0.4.30",
|
|
76
|
-
"@types/semver": "
|
|
76
|
+
"@types/semver": "7.3.13",
|
|
77
77
|
"@types/should": "8.3.0",
|
|
78
78
|
"@types/sinon": "2.3.7",
|
|
79
79
|
"@types/socket.io": "1.4.38",
|
package/tools/check-deps.js
CHANGED
|
@@ -49,7 +49,7 @@ for (const depName of matchedDepNames) {
|
|
|
49
49
|
continue;
|
|
50
50
|
}
|
|
51
51
|
const depVersion = deps[depName];
|
|
52
|
-
if (semver.prerelease(depVersion) !== null) {
|
|
52
|
+
if (semver.prerelease(semver.minVersion(depVersion)) !== null) {
|
|
53
53
|
prereleaseDepNames.push(depName);
|
|
54
54
|
}
|
|
55
55
|
if (runControl.expectRanges && depName in runControl.expectRanges) {
|