-
Notifications
You must be signed in to change notification settings - Fork 7
/
gulpfile.js
98 lines (84 loc) · 2.62 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
var gulp = require('gulp');
var traceur = require('gulp-traceur');
var connect = require('gulp-connect');
var rename_ = require('gulp-rename');
var bump = require('gulp-bump');
var TRACEUR_OPTIONS = require('./config').traceur;
var PATH = {
DIST: './dist/',
BUILD: './build/',
SRC: './src/**/*.js',
TEST: './test/**/*.js'
};
// A wrapper around gulp-rename to support `dirnamePrefix`.
function rename(obj) {
return rename_(function(parsedPath) {
return {
extname: obj.extname || parsedPath.extname,
dirname: (obj.dirnamePrefix || '') + parsedPath.dirname,
basename: parsedPath.basename
};
});
}
gulp.task('dist', function() {
gulp.src(PATH.SRC, {base: '.'})
// Rename before Traceur, so that Traceur has the knowledge of both input and output paths.
.pipe(rename({extname: '.js', dirnamePrefix: PATH.DIST}))
.pipe(gulp.dest('.'));
});
// TRANSPILE AT SCRIPT
gulp.task('build/src', function() {
gulp.src(PATH.SRC, {base: '.'})
// Rename before Traceur, so that Traceur has the knowledge of both input and output paths.
.pipe(rename({extname: '.js', dirnamePrefix: PATH.BUILD}))
.pipe(traceur(TRACEUR_OPTIONS))
.pipe(gulp.dest('.'));
});
gulp.task('build/test', function() {
gulp.src(PATH.TEST, {base: '.'})
// Rename before Traceur, so that Traceur has the knowledge of both input and output paths.
.pipe(rename({extname: '.js', dirnamePrefix: PATH.BUILD}))
.pipe(traceur(TRACEUR_OPTIONS))
.pipe(gulp.dest('.'));
});
gulp.task('dist', function() {
gulp.src(PATH.SRC, {base: './src'})
// Rename before Traceur, so that Traceur has the knowledge of both input and output paths.
.pipe(rename({extname: '.js', dirnamePrefix: PATH.DIST}))
.pipe(gulp.dest('.'));
});
gulp.task('build', ['build/src', 'build/test']);
// WATCH FILES FOR CHANGES
gulp.task('watch', function() {
gulp.watch(PATH.SRC, ['build']);
});
// WEB SERVER
gulp.task('serve', function() {
connect.server({
root: [__dirname],
port: 8000,
livereload: false
});
});
// Basic usage:
// Will patch the version
gulp.task('bump:patch', function(){
gulp.src(['./bower.json', './package.json'])
.pipe(bump())
.pipe(gulp.dest('./'));
});
// Defined method of updating:
// Semantic
gulp.task('bump:minor', function(){
gulp.src(['./bower.json', './package.json'])
.pipe(bump({type:'minor'}))
.pipe(gulp.dest('./'));
});
// Defined method of updating:
// Semantic major
gulp.task('bump:major', function(){
gulp.src(['./bower.json', './package.json'])
.pipe(bump({type:'major'}))
.pipe(gulp.dest('./'));
});
gulp.task('default', ['serve', 'watch']);