This repository was archived by the owner on Dec 23, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.js
56 lines (48 loc) · 1.5 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
const gulp = require('gulp');
const gutil = require('gulp-util');
const uglifyjs = require('gulp-uglify');
const sass = require('gulp-ruby-sass');
const filter = require('gulp-filter');
const browserify = require('browserify');
const assign = require('lodash.assign');
const watchify = require('watchify');
const source = require('vinyl-source-stream');
const buffer = require('vinyl-buffer');
const DEST = 'build/';
gulp.task('default', ['watch-sass', 'bundle']);
// Browserify JS + CSS
const params = {
entries: ['js/css.js', 'js/functions.js'],
debug: true,
global: true,
transform: [
['browserify-css', {
rebaseUrls: true,
rootDir: '.'
}]
],
};
const opts = assign({}, watchify.args, params);
const bundler = watchify(browserify(opts));
gulp.task('bundle', bundle);
bundler.on('update', bundle);
bundler.on('log', gutil.log);
function bundle() {
return bundler.bundle()
.on('error', gutil.log.bind(gutil, 'Browserify Error'))
.pipe(source('functions.min.js'))
.pipe(buffer())
.pipe(uglifyjs())
.on('error', function(err) {
gutil.log(gutil.colors.red('[Error]'), err.toString());
})
.pipe(gulp.dest(DEST));
}
gulp.task('sass', () =>
sass('css/styles.scss', { sourcemap: false })
.on('error', gutil.log.bind(gutil, 'Sass Error'))
.pipe(gulp.dest('css/'))
);
gulp.task('watch-sass', () =>
gulp.watch('css/**/*.scss', ['sass'])
);