From ba8ddc2d65caff26b518d49e6bb314bd7f0a7218 Mon Sep 17 00:00:00 2001 From: Teppo Kurki Date: Sun, 29 Sep 2019 13:45:51 +0300 Subject: [PATCH] chore: serialport@7.1.5 for Node 12 compatibility (#878) Serialport 7.1.5 is supposed to be compatible with Node 12, so let's upgrade to that to skip the ugly compile fails that people experience with Node 12. We are not supporting officially Node 12 though. https://github.com/serialport/node-serialport/issues/1742#issuecomment-487292061 --- packages/streams/package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/streams/package.json b/packages/streams/package.json index 1d2c2e71d..32b653305 100644 --- a/packages/streams/package.json +++ b/packages/streams/package.json @@ -1,6 +1,6 @@ { "name": "@signalk/streams", - "version": "1.3.2", + "version": "1.4.1", "description": "Utilities for handling streams of Signal K data", "main": "index.js", "scripts": { @@ -35,6 +35,6 @@ "stream-throttle": "^0.1.3" }, "optionalDependencies": { - "serialport": "^7.0.2" + "serialport": "^7.1.5" } }