Skip to content

Commit

Permalink
Version bump. Semicolons.
Browse files Browse the repository at this point in the history
  • Loading branch information
Coleman committed Sep 29, 2016
1 parent 918f6f6 commit 485614c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ var nodemon
, cp = require('child_process')
, bus = require('nodemon/lib/utils/bus')

module.exports = function (options){
module.exports = function (options) {
options = options || {};

// plug nodemon
if (options.nodemon && typeof options.nodemon === 'function') {
nodemon = options.nodemon;
nodemon = options.nodemon
delete options.nodemon
} else {
nodemon = require('nodemon');
nodemon = require('nodemon')
}

// Our script
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": "gulp-nodemon",
"version": "2.2.0",
"version": "2.2.1",
"description": "it's gulp + nodemon + convenience",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit 485614c

Please sign in to comment.