0.1.1 • Published 10 years ago

gulp-tojson v0.1.1

Weekly downloads
1
License
-
Repository
github
Last release
10 years ago

gulp-transform (WORK IN PROGRESS)

A gulp plugin for transforming data, e.g. CSV to JSON, TSV to CSV, etc.

Getting Started

Install the module with: npm install --save-dev gulp-transform

var transform = require('gulp-transform');

...

gulp.task('data', function() {
    return gulp.src('data/**/*.tsv')
        .pipe(transform().json())
        .pipe(gulp.dest('./build/data'));
});

License

Copyright (c) 2014 Matthew Conlen. Licensed under the MIT license.