Skip to content

Instantly share code, notes, and snippets.

@wowthemesnet
Last active March 9, 2020 00:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wowthemesnet/c5c8cad64b3262aa668414d59d18d4c1 to your computer and use it in GitHub Desktop.
Save wowthemesnet/c5c8cad64b3262aa668414d59d18d4c1 to your computer and use it in GitHub Desktop.
Gulp-zip for Gulp4
function deploy() {
return src([
'./**/*',
'!bower_components',
'!./{node_modules,node_modules/**/*}',
'!./package-lock.json',
'!./debug.log',
'!./gitignore',
'!./assets/{sass,sass/*}'
], {base: "."})
.pipe(zip('themename.zip'))
.pipe(dest('../../'))
}
exports.deploy = deploy;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment