Skip to content

Commit

Permalink
Trying to use Paris through NPM
Browse files Browse the repository at this point in the history
  • Loading branch information
yoxigen-zz committed Oct 19, 2017
1 parent 469fa18 commit 62ba8d1
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions gulpfile.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
const gulp = require('gulp');
const ts = require('gulp-typescript');
const jasmine = require('gulp-jasmine');
const clean = require('gulp-clean');
const runSequence = require('run-sequence');

Expand All @@ -22,18 +21,10 @@ gulp.task('clean', function () {
.pipe(clean());
});

gulp.task('test:run', function() {
return gulp.src('dist/spec/**')
.pipe(jasmine())
});

gulp.task('watch', ['default'], function() {
gulp.watch('src/*.ts', ['default']);
});

gulp.task('test', [], function(cb) {
runSequence('clean', 'build', 'test:run', cb);
});
gulp.task('default', [], function(cb) {
runSequence('clean', 'build', cb);
});

0 comments on commit 62ba8d1

Please sign in to comment.