-
Notifications
You must be signed in to change notification settings - Fork 26
/
gulpfile.js
122 lines (96 loc) · 3.56 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
var watchify = require('watchify');
var browserify = require('browserify');
var gulp = require('gulp');
var source = require('vinyl-source-stream');
var buffer = require('vinyl-buffer');
var gutil = require('gulp-util');
var babelify = require('babelify');
var uglify = require('gulp-uglify');
var sourcemaps = require('gulp-sourcemaps');
var assign = require('lodash.assign');
var browserSync = require('browser-sync');
var sass = require('gulp-sass');
var autoprefixer = require('gulp-autoprefixer');
var react = require('react');
var reactDOM = require('react-dom');
// ////////////////////////////////////////////////
// Javascript Browserify, Watchify, Babel, React
// https://github.com/gulpjs/gulp/blob/master/docs/recipes/fast-browserify-builds-with-watchify.md
// ////////////////////////////////////////////////
// add custom browserify options here
var customOpts = {
entries: ['./src/js/index.js'],
debug: true
};
var opts = assign({}, watchify.args, customOpts);
var b = watchify(browserify(opts));
// add transformations here
b.transform(babelify);
gulp.task('js', bundle); // so you can run `gulp js` to build the file
b.on('update', bundle); // on any dep update, runs the bundler
b.on('log', gutil.log); // output build logs to terminal
function bundle() {
return b.bundle()
// log errors if they happen
.on('error', gutil.log.bind(gutil, gutil.colors.red(
'\n\n*********************************** \n' +
'BROWSERIFY ERROR:' +
'\n*********************************** \n\n'
)))
.pipe(source('main.js'))
// optional, remove if you don't need to buffer file contents
.pipe(buffer())
.pipe(uglify())
// optional, remove if you dont want sourcemaps
.pipe(sourcemaps.init({loadMaps: true})) // loads map from browserify file
// Add transformation tasks to the pipeline here.
.pipe(sourcemaps.write('../maps')) // writes .map file
.pipe(gulp.dest('./public/js'))
.pipe(browserSync.reload({stream:true}));
}
// ////////////////////////////////////////////////
// Browser-Sync Tasks
// ////////////////////////////////////////////////
gulp.task('browserSync', function() {
browserSync({
server: {
baseDir: "./public/"
}
});
});
// ////////////////////////////////////////////////
// HTML Tasks
// ////////////////////////////////////////////////
gulp.task('html', function() {
return gulp.src('public/**/*.html')
.pipe(browserSync.reload({stream:true}));
});
// ////////////////////////////////////////////////
// Styles Tasks
// ///////////////////////////////////////////////
gulp.task('styles', function() {
gulp.src('src/scss/style.scss')
.pipe(sourcemaps.init())
.pipe(sass({outputStyle: 'compressed'}))
// .on('error', errorlog)
.on('error', gutil.log.bind(gutil, gutil.colors.red(
'\n\n*********************************** \n' +
'SASS ERROR:' +
'\n*********************************** \n\n'
)))
.pipe(autoprefixer({
browsers: ['last 3 versions'],
cascade: false
}))
.pipe(sourcemaps.write('../maps'))
.pipe(gulp.dest('public/css'))
.pipe(browserSync.reload({stream:true}));
});
// ////////////////////////////////////////////////
// Watch Tasks
// ////////////////////////////////////////////////
gulp.task('watch', function() {
gulp.watch('public/**/*.html', ['html']);
gulp.watch('src/scss/**/*.scss', ['styles']);
});
gulp.task('default', ['js', 'styles', 'browserSync', 'watch']);