create-chrome-ext
create-chrome-ext copied to clipboard
Zip method doesn't add files, only folders
So I faced this problem running npm run zip.
I added build/** to fix this, not sure how it worked earlier.
gulp
.src('build/**')
.pipe(zip(`${manifest.name.replaceAll(' ', '-')}-${manifest.version}.zip`))
.pipe(gulp.dest('package'))