@signageos/lib 10.20.0 → 10.21.0-master.2002
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 +5 -0
- package/package.json +3 -3
- package/tools/docker-entrypoint.sh +7 -0
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,11 @@ 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
|
+
### Added
|
|
9
|
+
- New function `withTimeout`
|
|
10
|
+
- `path` property into Server Socket interface
|
|
11
|
+
|
|
7
12
|
## [10.20.0] - 2023-08-01
|
|
8
13
|
### Added
|
|
9
14
|
- `getEnumFromString` helper
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@signageos/lib",
|
|
3
|
-
"version": "10.
|
|
3
|
+
"version": "10.21.0-master.2002",
|
|
4
4
|
"main": "./dist",
|
|
5
5
|
"files": [
|
|
6
6
|
"tools",
|
|
@@ -23,8 +23,8 @@
|
|
|
23
23
|
"prepare": "npm run prebuild && npm run build",
|
|
24
24
|
"test": "NODE_ENV=test mocha --opts mocha.opts",
|
|
25
25
|
"test:coverage": "c8 npm run test",
|
|
26
|
-
"test-connections": "
|
|
27
|
-
"test-rabbit-connection": "
|
|
26
|
+
"test-connections": "NODE_ENV=test mocha --allow-uncaught --opts mochaConnections.opts",
|
|
27
|
+
"test-rabbit-connection": "NODE_ENV=test node_modules/.bin/mocha --require should --require should-sinon --require ts-node/register --ui bdd --watch-extensions ts --timeout 120000 tests/**/rabbitmqGracefulExit.connection-spec.ts",
|
|
28
28
|
"watch": "tsc --watch",
|
|
29
29
|
"check": "npm run depcheck && tools/check-deps.js",
|
|
30
30
|
"depcheck": "depcheck --config .depcheckrc.json",
|