From da209a9cdf7111fef85ab3bdbba3255a99ef6664 Mon Sep 17 00:00:00 2001 From: Carlo Maria Curinga Date: Mon, 12 Dec 2016 16:13:51 +0100 Subject: [PATCH] fix typo in lock and unlock dep --- CHANGELOG.md | 4 ++++ lock/lock.js | 2 +- package.json | 2 +- unlock/unlock.js | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index efe6110..4de78ac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -46,3 +46,7 @@ * updates lock supervisor endpoint node * updates unlock supervisor endpoint node * updates apply (lock override) supervisor endpoint node + +## 0.1.5 + +* fixed a dependency declaration typo for lock/unlock nodes diff --git a/lock/lock.js b/lock/lock.js index 685a182..f154806 100644 --- a/lock/lock.js +++ b/lock/lock.js @@ -1,5 +1,5 @@ var request = require('request'); -var lockFile = require('lockFile'); +var lockFile = require('lockfile'); var msg; module.exports = function(RED) { function lockUpdates(config) { diff --git a/package.json b/package.json index 7412a00..131a127 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "node-red-contrib-resinio", - "version": "0.1.4", + "version": "0.1.5", "description": "A set of nodes to interact with resin.io supervisor from node-red", "repository": "https://github.com/resin-io-playground/node-red-contrib-resinio", "dependencies": { diff --git a/unlock/unlock.js b/unlock/unlock.js index 21d2631..dae374e 100644 --- a/unlock/unlock.js +++ b/unlock/unlock.js @@ -1,5 +1,5 @@ var request = require('request'); -var lockFile = require('lockFile'); +var lockFile = require('lockfile'); var msg; module.exports = function(RED) { function unlockUpdates(config) {