Skip to content
This repository has been archived by the owner on Nov 19, 2020. It is now read-only.

Jedidiah/gulp-rev-manifest-rails

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

84 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

gulp-rev-manifest-rails

Builds a rev manifest file that is compatible with Rails. Forked from the manifest function of gulp-rev

gulp-rev-manifest-rails sits downstream of gulp-rev and generates a rails compatible version of the manifest.

This plugin is a modified version of the gulp-rev manifest function and takes all the same options.

Install

$ npm install --save-dev gulp-rev-manifest-rails

Usage

var gulp = require('gulp');
var rev = require('gulp-rev');
var revManifestRails = require('gulp-rev-manifest-rails');

gulp.task('default', function () {
	return gulp.src('src/*.css')
		.pipe(rev())
		.pipe(gulp.dest('dist'))
		.pipe(revManifestRails())
		.pipe(gulp.dest('dist'));
});

About

Builds a rev manifest file that is compatible with Rails. Forked from the manifest function of gulp-rev

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%