-
Notifications
You must be signed in to change notification settings - Fork 32
/
gulpfile.js
67 lines (58 loc) · 1.9 KB
/
gulpfile.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
/*
* Gulp Configuration File.
*
* @since 21-March-2018
* @author Reedyseth
* @version 1.0.0
*
* */
var gulp = require( 'gulp' );
var eslint = require( 'gulp-eslint' );
var watch = require('gulp-watch');
var sass = require('gulp-sass')(require('sass'));
gulp.task('lint', function() {
// ESLint ignores files with "node_modules" paths.
// So, it's best to have gulp ignore the directory as well.
// Also, Be sure to return the stream from the task;
// Otherwise, the task may end before the stream has finished.
return gulp.src([
'**/*.js',
'!node_modules/**',
'!src/bower_components/**',
'!src/includes/tinymce-lite/**'
])
// eslint() attaches the lint output to the "eslint" property
// of the file object so it can be used by other modules.
.pipe(eslint())
// eslint.format() outputs the lint results to the console.
// Alternatively use eslint.formatEach() (see Docs).
.pipe(eslint.format())
// To have the process exit with an error code (1) on
// lint error, return the stream and pipe to failAfterError last.
.pipe(eslint.failAfterError());
});
gulp.task('sass', function () {
return gulp.src('src/includes/sass/*.scss')
.pipe(sass.sync().on( 'error', sass.logError ) )
.pipe( gulp.dest( 'src/includes/css' ) );
});
gulp.task('watch', function () {
// gulp.watch('src/includes/js/admin/**/*.js', ['lint']);
gulp.watch('src/includes/sass/*.scss', ['sass']);
});
gulp.task('copy', function () {
return gulp.src([
'src/**/*',
'!src/bower_components/',
'!src/utils/log.txt'
// 'src/**'
])
.pipe( gulp.dest('build') );
});
gulp.task('build', function () {
});
gulp.task('compile', function () {
});
gulp.task('default', gulp.series('lint'), function () {
// This will only run if the lint task is successful...
});