Just commit all of family home before editing 'cause i just accidentally overwrote gaeastohuaosneuh

This commit is contained in:
benjamin melançon 2019-07-28 12:25:34 -04:00
parent 18bba535b4
commit 84de7930cb
64 changed files with 15325 additions and 0 deletions

View file

@ -0,0 +1,33 @@
/*eslint strict: ["error", "global"]*/
'use strict';
//=======================================================
// Include Our Plugins
//=======================================================
var del = require('del');
// Export our tasks.
module.exports = {
// Clean style guide files.
styleguide: function() {
// You can use multiple globbing patterns as you would with `gulp.src`
return del([
'./dist/style-guide/*'
], {force: true});
},
// Clean CSS files.
css: function() {
return del([
'./dist/css/*'
], {force: true});
},
// Clean JS files.
js: function() {
return del([
'./dist/js/*'
], {force: true});
}
};