Skip to content

Instantly share code, notes, and snippets.

@MoOx
Last active August 29, 2015 14:06
Show Gist options
  • Save MoOx/b0673701c8fe4a32c08e to your computer and use it in GitHub Desktop.
Save MoOx/b0673701c8fe4a32c08e to your computer and use it in GitHub Desktop.
gulp task to clean dist/ folder except the config.json
var glob = require("glob")
var rimraf = require("rimraf")
module.exports = function(cb) {
glob.sync("./dist/!(config)*").forEach(function(path) {
rimraf.sync(path)
})
cb()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment