Skip to content

Commit e4f1382

Browse files
committed
[ci skip] fix publish zip
1 parent e252ee3 commit e4f1382

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gulpfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ gulp.task('beforeZip', () => {
191191
});
192192

193193
gulp.task('zip', ['beforeZip'], done => {
194-
gulp.src(['dist/*.js', 'dist/images/**/*', 'dist/maptalks.css', 'dist/LICENSE', 'dist/ACKNOWLEDGEMENT', 'dist/api/**/*'], { base: 'dist/' })
194+
gulp.src(['dist/*.js', 'dist/*.mjs', 'dist/images/**/*', 'dist/maptalks.css', 'dist/LICENSE', 'dist/ACKNOWLEDGEMENT', 'dist/api/**/*'], { base: 'dist/' })
195195
.pipe(zip('maptalks-' + package.version + '.zip'))
196196
.pipe(gulp.dest('dist'));
197197
setTimeout(function () {

0 commit comments

Comments
 (0)