preact-material-components
Version:
preact wrapper for "Material Components for the web"
15 lines (11 loc) • 295 B
JavaScript
var gulp = require('gulp');
var jasmine = require('gulp-jasmine');
gulp.task('test', function () {
return gulp
.src('compare-strings.spec.js')
.pipe(jasmine());
});
gulp.task('watch', function () {
gulp.watch('compare-strings*.js', ['test']);
});
gulp.task('default', ['watch']);