projects
/
working
/
eg-antora.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
09bd923
)
remove async from pack task [skip ci]
author
Dan Allen
<dan@opendevise.com>
Sat, 30 Jun 2018 04:30:34 +0000
(22:30 -0600)
committer
Dan Allen
<dan@opendevise.com>
Sat, 30 Jun 2018 04:30:34 +0000
(22:30 -0600)
tasks/pack.js
patch
|
blob
|
history
diff --git
a/tasks/pack.js
b/tasks/pack.js
index
2a9ab90
..
28111eb
100644
(file)
--- a/
tasks/pack.js
+++ b/
tasks/pack.js
@@
-3,7
+3,7
@@
const vfs = require('vinyl-fs')
const zip = require('gulp-vinyl-zip')
-module.exports =
async
(src, dest, bundleName) =>
+module.exports = (src, dest, bundleName) =>
vfs
.src('**/*', { base: src, cwd: src })
.pipe(zip.zip(`${bundleName}-bundle.zip`))