@signageos/front-display 14.0.0 → 14.1.1
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 +9 -0
- package/dist/bundle.js +1 -1
- package/dist/bundle.js.map +4 -4
- package/package.json +9 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@signageos/front-display",
|
|
3
|
-
"version": "14.
|
|
3
|
+
"version": "14.1.1",
|
|
4
4
|
"main": "dist/bundle.js",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"clean-build": "npm run clean && npm run build",
|
|
16
16
|
"develop": "check-engine && node tools/build.mjs --serve",
|
|
17
17
|
"docker": "docker run -it --rm -v $PWD:/src -w /src -e NPM_AUTH_TOKEN=$NPM_AUTH_TOKEN -e NPM_REGISTRY_URL=$NPM_REGISTRY_URL -e NPM_REGISTRY_HOST=$NPM_REGISTRY_HOST 172396373649.dkr.ecr.eu-central-1.amazonaws.com/signageos/docker-node:16-alpine-build bash",
|
|
18
|
-
"prebuild": "check-engine && mkdir -p dist es6 && npm run clean && npm rebuild @serialport/bindings",
|
|
18
|
+
"prebuild": "check-engine && mkdir -p dist es6 && npm run clean && npm rebuild @serialport/bindings-cpp",
|
|
19
19
|
"prepare": "npm run build && npx husky install && git config blame.ignoreRevsFile .git-blame-ignore-revs",
|
|
20
20
|
"test": "check-engine && env NODE_ENV=test ISOMORPHIC_TARGET=node mocha --opts mocha.opts",
|
|
21
21
|
"test:coverage": "check-engine && env NODE_ENV=test ISOMORPHIC_TARGET=node c8 mocha --opts mocha.opts",
|
|
@@ -44,7 +44,9 @@
|
|
|
44
44
|
"type": "git"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
|
-
"@serialport/
|
|
47
|
+
"@serialport/bindings-cpp": "12.0.1",
|
|
48
|
+
"@serialport/bindings-interface": "1.2.2",
|
|
49
|
+
"@serialport/stream": "12.0.0",
|
|
48
50
|
"@signageos/codestyle": "0.2.2",
|
|
49
51
|
"@signageos/front-osd": "0.8.1",
|
|
50
52
|
"@types/async-lock": "0.0.19",
|
|
@@ -67,7 +69,6 @@
|
|
|
67
69
|
"@types/react-dom": "16.8.5",
|
|
68
70
|
"@types/react-redux": "4.4.45",
|
|
69
71
|
"@types/redux-saga-tester": "1.0.8",
|
|
70
|
-
"@types/serialport": "8.0.2",
|
|
71
72
|
"@types/serviceworker": "0.0.55",
|
|
72
73
|
"@types/should-sinon": "0.0.5",
|
|
73
74
|
"@types/sinon": "10.0.11",
|
|
@@ -115,7 +116,7 @@
|
|
|
115
116
|
"dependencies": {},
|
|
116
117
|
"optionalDependencies": {
|
|
117
118
|
"node-fetch": "2.6.1",
|
|
118
|
-
"serialport": "
|
|
119
|
+
"serialport": "12.0.0"
|
|
119
120
|
},
|
|
120
121
|
"engines": {
|
|
121
122
|
"node": "20",
|
|
@@ -124,6 +125,9 @@
|
|
|
124
125
|
"engine-strict": false,
|
|
125
126
|
"author": "Michael Zabka <zabka.michael@gmail.com>",
|
|
126
127
|
"license": "MIT",
|
|
128
|
+
"overrides": {
|
|
129
|
+
"@signageos/common-types": "4.13.0"
|
|
130
|
+
},
|
|
127
131
|
"publishConfig": {
|
|
128
132
|
"registry": "https://registry.npmjs.org/",
|
|
129
133
|
"access": "public"
|