From 73e6c58f898602774010681fefdf9605b3d1ec73 Mon Sep 17 00:00:00 2001 From: liuyib <1656081615@qq.com> Date: Tue, 5 Sep 2023 23:39:39 +0800 Subject: [PATCH] chore: remove babel pipe when build es bundle --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 740f80cf66..2224dd61b2 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -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 () {