ym-project / gulp-esbuild

gulp plugin for esbuild bundler
MIT License
42 stars 7 forks source link

Cannot get it work with gulp-rev-all #2

Closed thetutlage closed 3 years ago

thetutlage commented 3 years ago

I am using https://www.npmjs.com/package/gulp-rev-all to generate a manifest of the built files. However, no files are emitted when piping the revAll. RevAll works with other transforms though

Code to reproduce

src('src/app.js')
    .pipe(
      gulpEsbuild({
       outfile: 'app.js',
        bundle: true,
      })
    )
    .pipe(revAll.revision())
    .pipe(revAll.manifestFile())
    .pipe(dest('public'))
thetutlage commented 3 years ago

Ignore me. It works fine. There was an issue with my code