gulp-esbuild icon indicating copy to clipboard operation
gulp-esbuild copied to clipboard

gulp plugin for esbuild bundler

Results 4 gulp-esbuild issues
Sort by recently updated
recently updated
newest added

There is a bug in `piping: true` mode. https://github.com/ym-project/gulp-esbuild/blob/d101b83b5b10595cd9d5cba430e8380d74402db7/index.js#L212 `.js` will be generated anyway. The plugin should respects user settings and sets `.js` extension only by default. Also according to...

bug

First I use createGulpEsbuild as here: ```js const esBuild = createGulpEsbuild({ pipe: true, incremental: true, }) ``` and inside tasks I have the following sequential data processing: ```js .pipe(someChanges()) .pipe(...

bug

Replace esbuild from https://github.com/ym-project/gulp-esbuild/blob/56b44dc5af1767a4f7a4a30fe999b97c73dfbed7/package.json#L34-L35 to `peerDependencies` section. This changes will allow to have latest changes and users will not wait the package update.

enhancement

When I create a stream using `gulp.src('./src/assets/scripts/**/*.js')`, the base directory of chunk would be `C:/proj/src/assets/sctipt`, but after processing, the base is equal to `C:/proj/` and the path is `C:/proj/sript.js`. The...