Skip to content

Commit

Permalink
fix typo in lock and unlock dep
Browse files Browse the repository at this point in the history
  • Loading branch information
Carlo Maria Curinga committed Dec 12, 2016
1 parent bfc701e commit da209a9
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion lock/lock.js
Original file line number Diff line number Diff line change
@@ -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) {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
2 changes: 1 addition & 1 deletion unlock/unlock.js
Original file line number Diff line number Diff line change
@@ -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) {
Expand Down

0 comments on commit da209a9

Please sign in to comment.