marionebl/jogwheel

View on GitHub
tasks/clean.js

Summary

Maintainability
A
0 mins
Test Coverage
var del = require('del');

module.exports = function (gulp, paths) {
    return function clean() {
        /* @desc clean all build results from project */
        var cleanPaths = [paths.clean.documentation, paths.clean.distribution];
        return del(cleanPaths);
    };
};