-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgulpfile.js
45 lines (41 loc) · 1.11 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
var gulp = require('gulp');
var args = require('yargs').argv;
var config = require('./gulp.config')();
var $ = require('gulp-load-plugins')({
lazy: true
});
gulp.task('jslint', function() {
return gulp
.src(config.paths.js)
.pipe($.if(args.verbose, $.print()))
.pipe($.jscs())
.pipe($.jshint())
.pipe($.jshint.reporter('jshint-stylish', {
verbose: true
}))
.pipe($.jshint.reporter('fail'));
});
gulp.task('beautify', function() {
var lineFeed = osCheck();
return gulp.src(config.paths.beautify, {
base: './'
})
.pipe($.jsbeautifier({
config: './beautify-settings.json',
eol: lineFeed
}))
.pipe($.jsbeautifier.reporter())
.pipe(gulp.dest('./'));
});
function osCheck() {
var lineFeed;
if (process.platform === 'win32') {
lineFeed = '\r\n';
} else if (process.platform === 'darwin' || process.platform === 'linux') {
lineFeed = '\n';
} else {
var error = 'Unfamiliar operating system.';
throw error;
}
return lineFeed;
}