This repository has been archived by the owner on Aug 3, 2022. It is now read-only.
forked from Bttstrp/bootstrap-switch
-
Notifications
You must be signed in to change notification settings - Fork 27
/
gulpfile.babel.js
117 lines (97 loc) · 3.33 KB
/
gulpfile.babel.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
var gulp = require('gulp');
var gutil = require('gulp-util');
var source = require('vinyl-source-stream');
var babelify = require('babelify');
var watchify = require('watchify');
var reactify = require('reactify');
var browserify = require('browserify');
var browserSync = require('browser-sync').create();
var less = require('gulp-less');
var rename = require('gulp-rename');
var cleanCss = require('gulp-clean-css');
var header = require('gulp-header');
var pkg = require('./package.json');
import { buildFolder } from './tools/build';
const banner = `
/* ========================================================================
* ${pkg.name} - v${pkg.version}
* ${pkg.homepage}
* ========================================================================
* Copyright 2012-2016 ${pkg.author.name}
*
* Released under the MIT license
* ========================================================================
*/
`
gulp.task('dev-bundle', function(){
// Input file.
watchify.args.debug = true;
// var bundler = watchify(browserify('./src/js/switch.js', watchify.args));
var bundler = watchify(browserify('./example/src/example.js', watchify.args));
// Babel transform
bundler.transform(babelify.configure({
sourceMapRelative: 'src/js',
presets: [ 'es2015', 'react' ]
}));
bundler.transform(reactify);
// On updates recompile
bundler.on('update', bundle);
function bundle(){
gutil.log('Compiling JS...');
return bundler.bundle()
.on('error', function (err) {
gutil.log(err.message);
browserSync.notify("Browserify Error!");
this.emit("end");
})
.pipe(source('react-bootstrap-switch.js'))
.pipe(gulp.dest('./example/js'))
.pipe(browserSync.stream({once: true}));
}
return bundle();
});
gulp.task('dev-less', function() {
return gulp.src('src/less/bootstrap3/build.less')
.pipe(less())
.pipe(rename('react-bootstrap-switch.css'))
.pipe(gulp.dest('example/css'))
.on('error', gutil.log);
});
gulp.task('less-bs3', function() {
return gulp.src('src/less/bootstrap3/build.less')
.pipe(less())
.pipe(header(banner, {pkg: pkg}))
.pipe(rename('react-bootstrap-switch.css'))
.pipe(gulp.dest('dist/css/bootstrap3'))
.pipe(cleanCss())
.pipe(header(banner, {pkg: pkg}))
.pipe(rename({suffix: ".min"}))
.pipe(gulp.dest('dist/css/bootstrap3'))
.on('error', gutil.log);
});
gulp.task('less-bs2', function() {
return gulp.src('src/less/bootstrap2/build.less')
.pipe(less())
.pipe(header(banner, {pkg: pkg}))
.pipe(rename('react-bootstrap-switch.css'))
.pipe(gulp.dest('dist/css/bootstrap2'))
.pipe(cleanCss())
.pipe(header(banner, {pkg: pkg}))
.pipe(rename({suffix: ".min"}))
.pipe(gulp.dest('dist/css/bootstrap2'))
.on('error', gutil.log);
});
gulp.task('less', ['less-bs2', 'less-bs3'], ()=>{});
gulp.task('dist', ['less'], function(){
buildFolder("src/js", "dist/js");
});
/**
* First bundle, then serve from the ./app directory
*/
gulp.task('default', ['dev-bundle', 'dev-less'], function(){
// Watch .less files
gulp.watch('src/less/bootstrap3/**/*.less', ['dev-less']);
browserSync.init({
server: "./example"
});
});