Skip to content

Commit c356f2d

Browse files
authored
Merge pull request #4 from marsjosephine/patch-1
Fix dependencies in package.json
2 parents 162660e + ee1a5a0 commit c356f2d

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

index.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ var reactDocgenMarkdown = require('./src/react-docgen-md');
1111
var PLUGIN_NAME = 'gulp-react-docs';
1212

1313
module.exports = function(options) {
14+
options = options || {};
15+
1416
return through.obj(function(file, encoding, cb) {
1517
if (file.isNull()) {
1618
return cb(null, file);

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
"url": "https://github.com/adroll/gulp-react-docs/issues"
2525
},
2626
"dependencies": {
27+
"gulp-util": "^3.0.7",
2728
"handlebars": "^4.0.5",
2829
"lodash": "^3.10.1",
2930
"react-docgen": "2.7.0",
@@ -35,8 +36,7 @@
3536
"gulp": "^3.9.0",
3637
"gulp-concat": "^2.6.0",
3738
"gulp-load-plugins": "^1.1.0",
38-
"gulp-tap": "^0.1.3",
39-
"gulp-util": "^3.0.7"
39+
"gulp-tap": "^0.1.3"
4040
},
4141
"engines": {
4242
"node": ">= 0.10"

0 commit comments

Comments
 (0)