Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

gulp-rev-all

Package Overview
Dependencies
Maintainers
1
Versions
91
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gulp-rev-all

Static asset revisioning by appending content hash to filenames: unicorn.css => unicorn-098f6bcd.css, also fixes references to static assets with each file.

  • 0.0.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
9.3K
decreased by-14.99%
Maintainers
1
Weekly downloads
 
Created
Source

gulp-rev Build Status

Static asset revisioning by appending content hash to filenames: unicorn.css => unicorn-098f6bcd.css, also fixes references to static assets with each file.

Make sure to set the files to never expire for this to have an effect.

Install

Install with npm

npm install --save-dev gulp-rev-all

Example

var gulp = require('gulp');
var revall = require('gulp-rev-all');

gulp.task('default', function () {
    gulp.src('src/**/*.css', 'src/**/*.js', 'src/**/*.html')
        .pipe(revall())
        .pipe(gulp.dest('dist'));
});

License

MIT © Joshua Bellamy-Henn

Keywords

FAQs

Package last updated on 10 Mar 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc