1
1
// external dependencies
2
- var gUtil = require ( 'gulp-util' ) ,
3
- PluginError = gUtil . PluginError ,
4
- through = require ( 'through2' ) ,
2
+ var through = require ( 'through2' ) ,
5
3
path = require ( 'path' ) ;
6
4
7
5
// internal dependencies
8
6
var reactDocgenMarkdown = require ( './src/react-docgen-md' ) ;
9
7
10
- // consts
11
- var PLUGIN_NAME = 'gulp-react-docs' ;
12
-
13
8
module . exports = function ( options ) {
14
9
options = options || { } ;
15
10
@@ -19,7 +14,7 @@ module.exports = function(options) {
19
14
}
20
15
21
16
if ( file . isStream ( ) ) {
22
- this . emit ( 'error' , new PluginError ( PLUGIN_NAME , 'Streams not supported!' ) ) ;
17
+ throw new Error ( 'Streams not supported!' )
23
18
24
19
} else if ( file . isBuffer ( ) ) {
25
20
@@ -42,13 +37,13 @@ module.exports = function(options) {
42
37
43
38
// get the markdown documentation for the file
44
39
var markdownDoc = reactDocgenMarkdown ( file . contents , {
45
- componentName : gUtil . replaceExtension ( file . relative , '' ) ,
40
+ componentName : file . relative . replace ( file . extname , '' ) ,
46
41
srcLink : srcLink
47
42
} ) ;
48
43
49
44
// 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' ) ;
52
47
53
48
return cb ( null , file ) ;
54
49
}
0 commit comments