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 7a62bd1 commit 047777eCopy full SHA for 047777e
gulpfile.js
@@ -248,7 +248,12 @@ gulp.task( 'deploy:custom', function() {
248
} );
249
250
gulp.task('build:docs', function () {
251
- exec('./node_modules/.bin/jsdoc lib/ --configure ./.jsdocrc.json', err => {
+ var cmd = './node_modules/.bin/jsdoc lib/ --configure ./.jsdocrc.json';
252
+
253
+ if (os.platform() !== 'darwin')
254
+ cmd = cmd.replace(/\//g, '\\');
255
256
+ exec(cmd, err => {
257
if (err) {
258
console.error(err)
259
}
0 commit comments