You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
rdrew 1440706ce3 fixed gulp 6 years ago
..
node_modules/object-assign fixed gulp 6 years ago
index.js fixed gulp 6 years ago
license fixed gulp 6 years ago
package.json fixed gulp 6 years ago
readme.md fixed gulp 6 years ago

readme.md

vinyl-assign Build Status

Assign custom attributes to vinyl files

Install

$ npm install --save vinyl-assign

Usage

var gulp = require('gulp');
var vinylAssign = require('vinyl-assign');

gulp.task('default', function () {
	return gulp.src('foo.txt')
		.pipe(vinylAssign({foo: 'bar'}))
		.pipe(gulp.dest('dest'));
});

License

MIT © Kevin Mårtensson