diff --git a/gulpfile.js b/gulpfile.js index a77b787..e7aac60 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -56,7 +56,12 @@ gulp.task('zip', ['css'], function() { var themeName = require('./package.json').name; var filename = themeName + '.zip'; - return gulp.src(['**', '!node_modules', '!node_modules/**']) + return gulp.src([ + '**', + '!node_modules', '!node_modules/**', + '!dist', '!dist/**', + '!assets/css', '!assets/css/**', + ]) .pipe(zip(filename)) .pipe(gulp.dest(targetDir)); });