1.1.2 • Published 4 years ago

gulp-tfs-checkout v1.1.2

Weekly downloads
176
License
MIT
Repository
github
Last release
4 years ago

gulp-tfs-checkout

NPM version build status Coverage Status Downloads

Installation

$ npm install gulp-tfs-checkout

Usage

Based on the node-package tfs-unlock.

var gulp = require('gulp');
var tfs = require('gulp-tfs-checkout');

gulp.task('checkout', function() {
    return gulp.src([
            'Website/Layout/js/*',
            'Website/Layout/css/*'
        ])
        .pipe(tfs());
});

// Add 'checkout' task as dependency to other tasks

gulp.task('sass', ['checkout'], function() {
    ...
});

// Or run it as a default task
gulp.task('default', ['checkout', '...', '...', '...']);

Why?

I was tired of having to checkout files that were going to be manipulated manually. The npm package 'tfs-unlock' can't parse a directory, so I wrote this little plugin that can parse a directory, and performs the tfs-task on each file.

Roadmap / help wanted

  • I'd like to reach a higher coverage score, but I'm really lost when it comes to unit-testing. If anyone wants to contribute with some unit-testing, I'd be really happy.

License

MIT

1.1.2

4 years ago

1.1.0

5 years ago

1.0.3

7 years ago

1.0.2

8 years ago

1.0.1

8 years ago

1.0.0

9 years ago

0.0.5

9 years ago

0.0.4

9 years ago

0.0.3

9 years ago

0.0.2

9 years ago

0.0.1

9 years ago