DefinitelyTyped/gulp-shell/gulp-shell-tests.ts
2016-05-04 16:30:29 -07:00

43 lines
930 B
TypeScript

import shell = require('gulp-shell');
import gulp = require('gulp');
gulp.task('example', function () {
return gulp.src('*.js', {read: false})
.pipe(shell([
'echo <%= f(file.path) %>',
'ls -l <%= file.path %>'
], {
templateData: {
f: function (s: string) {
return s.replace(/$/, '.bak')
}
}
}))
});
gulp.task('shorthand', shell.task([
'echo hello',
'echo world'
]));
var paths: any = {
js: ['*.js', 'test/*.js']
};
gulp.task('test', shell.task('mocha -R spec'));
gulp.task('coverage', ['test'], shell.task('istanbul cover _mocha -- -R spec'));
gulp.task('coveralls', ['coverage'], shell.task('cat coverage/lcov.info | coveralls'));
gulp.task('lint', shell.task('eslint ' + paths.js.join(' ')));
gulp.task('default', ['coverage', 'lint']);
gulp.task('watch', function () {
gulp.watch(paths.js, ['default'])
});