0.4.1 • Published 8 years ago

gulp-tarima v0.4.1

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

Tarima for Gulp

Build Status NPM version Coverage Status

$ npm install gulp-tarima --save

gulpfile.js

var gulp = require('gulp'),
    tarima = require('gulp-tarima');

// one-to-one
gulp.task('raw', function() {
  return gulp.src('src/views/**/*.*')
    .pipe(tarima())
    .pipe(gulp.dest('tmp_views'));
});

// bundle
gulp.task('join', function() {
  return gulp.src('spec/views/**/*.js.*')
    .pipe(tarima('sub/path/views.js'))
    .pipe(gulp.dest('tmp_views'));
});

API

  • tarima(options)
  • tarima(filename, callback)

    When filename is provided it will be used as options.filename

    When callback is provided it will be used as options.wrapper if missing.

Options

Please checkout the Tarima's README at GitHub.

All options will be passed directly to the parse() and bundle() method respectively.

0.4.1

8 years ago

0.4.0

8 years ago

0.3.5

8 years ago

0.3.4

8 years ago

0.3.3

9 years ago

0.3.2

9 years ago

0.3.1

9 years ago

0.3.0

9 years ago

0.2.0

9 years ago

0.1.1

9 years ago

0.1.0

9 years ago