@signalk/streams 4.5.0 → 5.0.0

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/canboatjs.js CHANGED
@@ -23,6 +23,7 @@ function CanboatJs(options) {
23
23
  objectMode: true
24
24
  })
25
25
 
26
+ options.useCamelCompat = true
26
27
  this.fromPgn = new FromPgn(options)
27
28
  const createDebug = options.createDebug || require('debug')
28
29
  const debug = createDebug('signalk:streams:canboatjs')
package/n2kAnalyzer.js CHANGED
@@ -26,12 +26,12 @@ function N2KAnalyzer(options) {
26
26
  if (process.platform === 'win32') {
27
27
  this.analyzerProcess = require('child_process').spawn('cmd', [
28
28
  '/c',
29
- 'analyzer -json -si'
29
+ 'analyzer -json -si -camel'
30
30
  ])
31
31
  } else {
32
32
  this.analyzerProcess = require('child_process').spawn('sh', [
33
33
  '-c',
34
- 'analyzer -json -si'
34
+ 'analyzer -json -si -camel'
35
35
  ])
36
36
  }
37
37
  this.analyzerProcess.stderr.on('data', function (data) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@signalk/streams",
3
- "version": "4.5.0",
3
+ "version": "5.0.0",
4
4
  "description": "Utilities for handling streams of Signal K data",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -22,9 +22,9 @@
22
22
  },
23
23
  "homepage": "https://github.com/SignalK/signalk-server-node#readme",
24
24
  "dependencies": {
25
- "@canboat/canboatjs": "^2.0.0",
25
+ "@canboat/canboatjs": "^3.0.0",
26
26
  "@signalk/client": "^2.3.0",
27
- "@signalk/n2k-signalk": "^3.0.0",
27
+ "@signalk/n2k-signalk": "^4.0.0",
28
28
  "@signalk/nmea0183-signalk": "^3.0.0",
29
29
  "@signalk/nmea0183-utilities": "^0.8.0",
30
30
  "@signalk/signalk-schema": "^1.5.0",