scratch

Subversion Repositories:
Compare Path: Rev
With Path: Rev
?path1? @ 83  →  ?path2? @ 84
/bower_components/simple-undo/gulpfile.js
@@ -0,0 +1,14 @@
var jshint = require('gulp-jshint');
var mocha = require('gulp-mocha');
var gulp = require('gulp');
 
gulp.task('lint', function() {
return gulp.src('./lib/simple-undo.js')
.pipe(jshint())
.pipe(jshint.reporter('default'));
});
 
gulp.task('test', function() {
return gulp.src('./tests/simple-undo.js', {read: false})
.pipe(mocha({reporter: 'spec'}));
});