-
Notifications
You must be signed in to change notification settings - Fork 23
/
gulpfile.js
50 lines (44 loc) · 1.45 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
/*
* Copyright (c) 2015, Joel Richard
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
var gulp = require('gulp');
var plumber = require('gulp-plumber');
var concat = require('gulp-concat');
var uglify = require('gulp-uglify');
var rename = require('gulp-rename');
var jshint = require('gulp-jshint');
gulp.task('default', function () {
gulp.src(['./src/vdom.js'])
.pipe(plumber())
.pipe(jshint())
.pipe(jshint.reporter('default'))
.pipe(concat('cito.js'))
.pipe(gulp.dest('./dist'))
.pipe(rename('cito.min.js'))
.pipe(uglify({compress: {}}))
.pipe(gulp.dest('./dist'))
.on('error', function (error) {
console.error('' + error);
});
// TODO make compatible with closure compiler
/*
var closureCompiler = require('gulp-closure-compiler');
.pipe(closureCompiler({
compilerPath: 'node_modules/closure-compiler/lib/vendor/compiler.jar',
fileName: 'cito.min-advanced.js',
compilerFlags: {
compilation_level: 'ADVANCED_OPTIMIZATIONS',
language_in: "ECMASCRIPT5"
}
}))
.pipe(gulp.dest('./dist'));
*/
});
gulp.task('watch', function() {
gulp.start('default');
gulp.watch('src/**', ['default']);
});