function remove()

in gulpfile.js [106:109]


function remove (path) {
    console.log('removing ' + path);
    fs.rmSync(path, { recursive: true, force: true });
}