File tree Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -104,15 +104,15 @@ gulp.task('build-js', function() {
104
104
. on ( 'error' , gutil . log ) ;
105
105
} ) ;
106
106
107
- gulp . task ( 'docs' , function ( ) {
108
- gulp . task ( 'docs' , shell . task ( [
109
- 'node_modules\\ jsdoc\\ jsdoc.js ' +
110
- ' -c node_modules\\ angular-jsdoc\\ common/ conf.json '+ // config file
111
- ' -t node_modules\\ angular-jsdoc\\ angular-template ' + // template file
112
- ' -d build\\docs ' + // output directory
113
- '.\\ README.md ' + // to include README.md as index contents
114
- ' -r directives services' // source code directory
115
- ] ) ) ;
107
+ gulp . task ( 'docs' , function ( ) {
108
+ shell . task ( [
109
+ path . join ( 'node_module' , ' jsdoc' , ' jsdoc.js' ) +
110
+ ' -c ' + path . join ( ' node_modules' , ' angular-jsdoc' , ' common' , ' conf.json ') + // config file
111
+ ' -t ' + path . join ( ' node_modules' , ' angular-jsdoc' , ' angular-template' ) + // template file
112
+ ' -d ' + path . join ( ' build' , 'docs' ) + // output directory
113
+ ' ' + path . join ( './ README.md' ) + // to include README.md as index contents
114
+ ' -r directives services' // source code directory
115
+ ] ) ;
116
116
} ) ;
117
117
118
118
gulp . task ( 'bump' , function ( ) { bumpVersion ( 'patch' ) ; } ) ;
You can’t perform that action at this time.
0 commit comments