-
Notifications
You must be signed in to change notification settings - Fork 61
/
gulpfile.js
163 lines (142 loc) · 4.68 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
'use strict';
var gulp = require('gulp');
var babel = require('babelify');
var gulpBabel = require('gulp-babel');
var browserify = require('browserify');
var source = require('vinyl-source-stream');
var buffer = require('vinyl-buffer');
var cssmin = require('gulp-cssmin');
var download = require('gulp-download');
var exec = require('child_process').exec;
var less = require('gulp-less');
var rename = require('gulp-rename');
var uglify = require('gulp-uglify');
var connect = require('gulp-connect');
var react = require('gulp-react');
var replace = require('gulp-replace');
var fs = require('fs');
var wrap = require('gulp-wrap');
var port = 8080;
// this task downloads the lastest .js and .less from the 'parent'
// library that we are wrapping for react
gulp.task('download', function () {
// download the .js file
download('https://raw.githubusercontent.com/davidstutz/bootstrap-multiselect/master/dist/js/bootstrap-multiselect.js')
.pipe(rename('bootstrap-multiselect-original.js'))
.pipe(gulp.dest('./lib/'));
// download the .less file
download('https://raw.githubusercontent.com/davidstutz/bootstrap-multiselect/master/dist/less/bootstrap-multiselect.less')
.pipe(gulp.dest('./less/'));
// download the .css file
download('https://raw.githubusercontent.com/davidstutz/bootstrap-multiselect/master/dist/css/bootstrap-multiselect.css')
.pipe(gulp.dest('./css/'));
});
gulp.task('get-options', function () {
// fake jQuery
var jQuery = function() {};
jQuery.fn = {};
// init
var $ = require('./lib/bootstrap-multiselect.js').init(jQuery);
var defaults = $.fn.multiselect.prototype.constructor.Constructor.prototype.defaults;
// get default plugin options
var options = Object.keys(defaults).sort().map(function (opt) {
if (opt === 'enableCollapsibelOptGroups') {
opt = 'enableCollapsibleOptGroups';
}
return opt;
});
fs.writeFile('./lib/get-options.js', [
'/* generated by gulpfile.js */',
'module.exports = exports = function () {',
'\treturn ' + JSON.stringify(options, null, '\t\t') + ';',
'};'
].join('\n'), 'utf-8');
});
gulp.task('bootstrap-dropdown', function () {
gulp.src('./node_modules/bootstrap/js/dropdown.js')
.pipe(wrap('exports.init = function (jQuery) {\nif (typeof jQuery.fn.dropdown !== "undefined") return jQuery;\n<%= contents %>\nreturn jQuery;\n};'))
.pipe(rename('bootstrap-dropdown.js'))
.pipe(gulp.dest('./lib'));
});
gulp.task('bootstrap-multiselect', function () {
gulp.src('./lib/bootstrap-multiselect-original.js')
.pipe(wrap('exports.init = function (jQuery) {\nif (typeof jQuery.fn.multiselect !== "undefined") return jQuery;\n<%= contents %>\nreturn jQuery;\n};'))
.pipe(replace('window.jQuery', 'jQuery'))
.pipe(rename('bootstrap-multiselect.js'))
.pipe(gulp.dest('./lib'));
});
gulp.task('lint', function () {
exec([
'node',
'./node_modules/jsxhint/cli.js',
//'--show-non-errors',
'--config',
'./.jshint',
'./gulpfile.js ./lib/index.js ./demo/src/*.js'
].join(' '),
function (err, stdout, stderr) {
if (stdout) {
console.log(stdout);
}
});
});
gulp.task('fonts', function () {
gulp.src('./node_modules/bootstrap/dist/fonts/*')
.pipe(gulp.dest('./demo/www/fonts/'));
});
gulp.task('app-content', function () {
var content = fs.readFileSync('./demo/src/App.js', 'utf-8');
fs.writeFileSync(
'./demo/src/AppContent.js',
[
'/* autogenerated by gulpfile.js */',
'exports.content = ' + JSON.stringify(content) + ';'
].join('\n'),
'utf-8'
);
});
gulp.task('demo', function () {
var buildStyles = function (name) {
gulp.src('./demo/src/less/' + name + '.less')
.pipe(less())
.pipe(rename(name + '.debug.css'))
.pipe(gulp.dest('./demo/www/css/'))
.pipe(cssmin())
.pipe(rename(name + '.min.css'))
.pipe(gulp.dest('./demo/www/css/'));
};
// styles
buildStyles('demo');
buildStyles('bootstrap-multiselect');
var demoBundle = browserify('./demo/src/App.js', {
debug: true
}).transform(babel);
// scripts
demoBundle.bundle()
.pipe(source('demo.debug.js'))
.pipe(buffer())
.pipe(gulp.dest('./demo/www/js/'))
.pipe(uglify())
.pipe(rename('demo.min.js'))
.pipe(gulp.dest('./demo/www/js/'));
gulp.src('lib/*')
.pipe(gulpBabel())
.pipe(gulp.dest('dist'));
});
gulp.task('server', function() {
connect.server({
root: './demo/www',
livereload: true,
port: 8080
});
});
gulp.task('watch', function () {
gulp.watch(['./gulpfile.js', './lib/**/*.js','./demo/src/**/*.js'], ['build']);
});
gulp.task('update', ['download', 'get-options']);
gulp.task('build', ['lint', 'fonts', 'app-content', 'demo']);
gulp.task('default', ['bootstrap-dropdown', 'bootstrap-multiselect', 'build', 'server', 'watch']);
//handle errors
process.on('uncaughtException', function (e) {
console.error(e);
});