0.2.0-beta.1 • Published 8 years ago

natron-vinyl v0.2.0-beta.1

Weekly downloads
6
License
MIT
Repository
github
Last release
8 years ago

Natron

Natron Vinyl Utilities

Version Downloads Readme

Gitter Chat

This module is part of Natron.

Documentation

See the documentation for natron-vinyl.

Usage

import {src, dest, transformer} from "natron-vinyl";

let FileLogger = transformer((file) => {
  console.log(file.path);
  return file;
});

function copy() {
  return (src("src/**/*.js")
    .pipe(new FileLogger())
    .pipe(dest("dist"))
  );
}