gulp-rev-fakemanifest

gulp-rev workaround for fake manifest

Usage no npm install needed!

<script type="module">
  import gulpRevFakemanifest from 'https://cdn.skypack.dev/gulp-rev-fakemanifest';
</script>

README

gulp-rev-fakemanifest Build Status Coverage Status Dependency Status

Generate a fake manifest where v=k. Provide a workaround for https://github.com/sindresorhus/gulp-rev/issues/40

Installation

npm install gulp-rev-fakemanifest --save

Usage

const revFakeManifest = require('gulp-rev-fakemanifest');

(...).pipe(revFakeManifest(pth, opts).pipe(...)

Options are the same as gulp-rev-manifest: https://github.com/lukeed/gulp-rev-manifest#revmanifestpath-options

Example

return gulp.src('dist', { base: 'assets' })
  .pipe(isProd ? rev() : noop())
  .pipe(
    isProd
    ? rev.manifest({ base: 'assets' })
    : revFakeManifest({ base: 'assets' })
  )
  .pipe(gulp.dest('assets'));

TODO

  • More tests