@signageos/lib 10.4.1 → 10.4.2-master.1650
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 +1 -1
- 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
|
+
- check-deps script missing expectRanges in `.check-depsrc.json` config
|
|
10
|
+
|
|
7
11
|
## [10.4.1] - 2022-10-27
|
|
8
12
|
### Fixed
|
|
9
13
|
- Set default value for `onExit` callback in `GenericGracefulExit` class
|
package/package.json
CHANGED
package/tools/check-deps.js
CHANGED
|
@@ -52,7 +52,7 @@ for (const depName of matchedDepNames) {
|
|
|
52
52
|
if (semver.prerelease(depVersion) !== null) {
|
|
53
53
|
prereleaseDepNames.push(depName);
|
|
54
54
|
}
|
|
55
|
-
if (depName in runControl.expectRanges) {
|
|
55
|
+
if (runControl.expectRanges && depName in runControl.expectRanges) {
|
|
56
56
|
if (!isExpectedRangeValid(depName, depVersion)) {
|
|
57
57
|
expectedRangeDepNames.push(depName);
|
|
58
58
|
}
|