0.0.6 • Published 9 years ago

gulp-p4 v0.0.6

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

gulp-p4

perforce plugin for gulp

Install

npm install gulp-p4 --save-dev

Example

var p4 = require('node-perforce');
var gulp = require('gulp');
var gulpP4 = require('gulp-p4');

gulp.task('default', function(callback) {
  p4.changelist.create({description: 'hello world'}, function(err, cl) {
    if (err) return callback(err);
    gulp.src('./*.js')
      .pipe(gulpP4('add', {changelist:cl}))
      .pipe(gulp.dest('./dist'));
    callback();
  });
});
0.0.6

9 years ago

0.0.5

9 years ago

0.0.4

10 years ago

0.0.3

10 years ago

0.0.2

10 years ago

0.0.1

10 years ago