Skip to content

Commit

Permalink
chore: remove babel pipe when build es bundle
Browse files Browse the repository at this point in the history
  • Loading branch information
liuyib committed Sep 5, 2023
1 parent 5412bb7 commit 73e6c58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ gulp.task('es', function () {
const tsProject = ts.createProject('tsconfig.pro.json', {
module: 'ESNext',
});
return tsProject.src().pipe(tsProject()).pipe(babel()).pipe(gulp.dest('es/'));
return tsProject.src().pipe(tsProject()).pipe(gulp.dest('es/'));
});

gulp.task('declaration', function () {
Expand Down

0 comments on commit 73e6c58

Please sign in to comment.