Skip to content

Commit 140dc75

Browse files
committed
Refactor gulp-util out
1 parent 08ed134 commit 140dc75

File tree

1 file changed

+5
-10
lines changed

1 file changed

+5
-10
lines changed

index.js

+5-10
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,10 @@
11
// external dependencies
2-
var gUtil = require('gulp-util'),
3-
PluginError = gUtil.PluginError,
4-
through = require('through2'),
2+
var through = require('through2'),
53
path = require('path');
64

75
// internal dependencies
86
var reactDocgenMarkdown = require('./src/react-docgen-md');
97

10-
// consts
11-
var PLUGIN_NAME = 'gulp-react-docs';
12-
138
module.exports = function(options) {
149
options = options || {};
1510

@@ -19,7 +14,7 @@ module.exports = function(options) {
1914
}
2015

2116
if (file.isStream()) {
22-
this.emit('error', new PluginError(PLUGIN_NAME, 'Streams not supported!'));
17+
throw new Error('Streams not supported!')
2318

2419
} else if (file.isBuffer()) {
2520

@@ -42,13 +37,13 @@ module.exports = function(options) {
4237

4338
// get the markdown documentation for the file
4439
var markdownDoc = reactDocgenMarkdown(file.contents, {
45-
componentName : gUtil.replaceExtension(file.relative, ''),
40+
componentName : file.relative.replace(file.extname, ''),
4641
srcLink : srcLink
4742
});
4843

4944
// replace the file contents and extension
50-
file.contents = new Buffer(markdownDoc);
51-
file.path = gUtil.replaceExtension(file.path, '.md');
45+
file.contents = Buffer.from(markdownDoc);
46+
file.path = file.path.replace(file.extname, '.md');
5247

5348
return cb(null, file);
5449
}

0 commit comments

Comments
 (0)