Skip to content

Commit cd68b65

Browse files
committed
Remove unused packages from gulpfile.js
1 parent c1711b3 commit cd68b65

File tree

1 file changed

+1
-11
lines changed

1 file changed

+1
-11
lines changed

gulpfile.js

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,8 @@
11
const babel = require('gulp-babel');
22
const chmod = require('gulp-chmod');
33
const eslint = require('gulp-eslint');
4-
const ghPages = require('gulp-gh-pages');
54
const gulp = require('gulp');
65
const gulpIf = require('gulp-if');
7-
const sass = require('gulp-sass');
8-
const watch = require('gulp-watch');
9-
10-
gulp.task('deploy', ['build'], function() {
11-
return gulp.src('./docs/**/*')
12-
.pipe(ghPages());
13-
});
146

157
gulp.task('scripts', () => {
168
gulp.src('./lib/src/**/*.js')
@@ -44,9 +36,7 @@ gulp.task('lint', () => {
4436
.pipe(gulpIf(isFixed, gulp.dest('./lib/')));
4537
});
4638

47-
gulp.task('watch', () => {
48-
return gulp.watch('./lib/**/*.js', ['lint', 'scripts']);
49-
});
39+
gulp.task('watch', () => gulp.watch('./lib/**/*.js', ['lint', 'scripts']));
5040

5141
gulp.task('build', ['lint', 'scripts']);
5242
gulp.task('default', ['build', 'watch']);

0 commit comments

Comments
 (0)