cse112-sp20/Team-Potato

View on GitHub
gulpfile.js

Summary

Maintainability
A
0 mins
Test Coverage
const gulp = require('gulp');
const shell = require('gulp-shell');

gulp.task(
  'createDocs',
  shell.task(['rm -rf out', './node_modules/.bin/jsdoc -c conf.json'])
);