betajs/betajs-compile

View on GitHub
grunt/clean.js

Summary

Maintainability
A
0 mins
Test Coverage
module.exports = function (taskname, file) {
    this.grunt.loadNpmTasks('grunt-contrib-clean');
    taskname = taskname || "clean";
    return this.registerTask(taskname, [
        this.addConfigTask("clean", taskname, file)
    ]);
};