We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 721cb40 commit 43be733Copy full SHA for 43be733
gulpfile.js
@@ -5,8 +5,11 @@ var jshint = require('gulp-jshint');
5
var jasmine = require('gulp-jasmine');
6
var stylish = require('jshint-stylish');
7
var jscs = require('gulp-jscs');
8
+var isWin = /^win/.test(process.platform);
9
10
gulp.task('jsdoc', shell.task([
11
+ (isWin) ?
12
+ '"node_modules/.bin/jsdoc.cmd" -c ./doc-config.json' :
13
'./node_modules/.bin/jsdoc -c ./doc-config.json'
14
]));
15
0 commit comments