Pin zwave-js dependencies (#1924)

This commit is contained in:
Martin Hjelmare
2021-03-16 16:44:33 +01:00
committed by GitHub
parent 2f8d2e41e3
commit 17be2b5f21
4 changed files with 20 additions and 6 deletions

View File

@@ -1,5 +1,10 @@
# Changelog # Changelog
## 0.1.12
- Bump Z-Wave JS to 6.5.1
- Pin Z-Wave JS dependencies
## 0.1.11 ## 0.1.11
- Bump Z-Wave JS Server to 1.1.1 - Bump Z-Wave JS Server to 1.1.1

View File

@@ -18,13 +18,18 @@ RUN \
python3 \ python3 \
\ \
&& npm config set unsafe-perm \ && npm config set unsafe-perm \
&& npm install -g \ && npm install \
@zwave-js/server@${ZWAVEJS_SERVER_VERSION} \ "zwave-js@${ZWAVEJS_VERSION}" \
zwave-js@${ZWAVEJS_VERSION} \ "@zwave-js/core@${ZWAVEJS_CORE_VERSION}" \
@zwave-js/core@${ZWAVEJS_VERSION} \ "@zwave-js/serial@${ZWAVEJS_SERIAL_VERSION}" \
"@zwave-js/config@${ZWAVEJS_CONFIG_VERSION}" \
"@zwave-js/shared@${ZWAVEJS_SHARED_VERSION}" \
"@zwave-js/server@${ZWAVEJS_SERVER_VERSION}" \
\ \
&& apk del --no-cache \ && apk del --no-cache \
.build-dependencies .build-dependencies
WORKDIR / WORKDIR /
COPY rootfs / COPY rootfs /
ENV PATH=/usr/src/node_modules/.bin:$PATH

View File

@@ -8,6 +8,10 @@
}, },
"args": { "args": {
"ZWAVEJS_SERVER_VERSION": "1.1.1", "ZWAVEJS_SERVER_VERSION": "1.1.1",
"ZWAVEJS_VERSION": "6.5.0" "ZWAVEJS_VERSION": "6.5.1",
"ZWAVEJS_CORE_VERSION": "6.5.0",
"ZWAVEJS_SERIAL_VERSION": "6.5.0",
"ZWAVEJS_CONFIG_VERSION": "6.5.1",
"ZWAVEJS_SHARED_VERSION": "6.5.0"
} }
} }

View File

@@ -1,6 +1,6 @@
{ {
"name": "Z-Wave JS", "name": "Z-Wave JS",
"version": "0.1.11", "version": "0.1.12",
"slug": "zwave_js", "slug": "zwave_js",
"description": "Control a ZWave network with Home Assistant Z-Wave JS", "description": "Control a ZWave network with Home Assistant Z-Wave JS",
"arch": ["amd64", "i386", "armhf", "armv7", "aarch64"], "arch": ["amd64", "i386", "armhf", "armv7", "aarch64"],