0.0.2 • Published 5 years ago

gulp-rev-fakemanifest v0.0.2

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

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