forked from TeamBigGulp/chugg
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathgulpfile.js
More file actions
84 lines (73 loc) · 2.18 KB
/
gulpfile.js
File metadata and controls
84 lines (73 loc) · 2.18 KB
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
var gulp = require('gulp');
var browserify = require('browserify');
var babelify = require('babelify');
var watchify = require('watchify');
var source = require('vinyl-source-stream');
var notify = require('gulp-notify');
var nodemon = require('gulp-nodemon');
var less = require('gulp-less');
var path = require('path');
function handleErrors() {
var args = Array.prototype.slice.call(arguments);
notify.onError({
title : 'Compile Error',
message : '<%= error.message %>'
}).apply(this, args);
//console.log('Compile error: ', args);
this.emit('end'); //keeps gulp from hanging on this task
}
function buildScript(file, watch) {
var props = {
entries : ['./components/' + file],
debug : true,
transform : babelify.configure({
presets: ["react", "es2015"]
})
};
//watchify if watch set to true. otherwise browserify once
var bundler = watch ? watchify(browserify(props)) : browserify(props);
function rebundle(){
var stream = bundler.bundle();
return stream
.on('error', handleErrors)
.pipe(source('bundle.js'))
.pipe(gulp.dest('./build/'));
}
bundler.on('update', function() {
var updateStart = Date.now();
rebundle();
console.log('Updated!', (Date.now() - updateStart) + 'ms');
});
// run it once the first time buildScript is called
return rebundle();
}
// run once
gulp.task('scripts', function() {
return buildScript('App.js', false);
});
// Get our Css
// gulp.task('less', function() {
// return gulp.src('/node_modules/bootstrap/less/*.less')
// .pipe(less({
// paths: [ path.join(__dirname, 'less', 'includes') ]
// }))
// .pipe(gulp.dest('./build/'));
// });
gulp.task('less', function() {
return gulp.src('node_modules/bootstrap/less/bootstrap.less')
.pipe(less())
.pipe(gulp.dest('./build/'));
});
// run nodemon
gulp.task('start', function() {
nodemon({
script: 'server/server.js',
ignore: ['newgulpfile.js'],
ext: 'js html',
env: {'NODE_ENV': 'development'}
});
});
// run 'scripts' task first, then watch for future changes
gulp.task('default', ['scripts', 'less', 'start'], function() {
return buildScript('App.js', true);
});