forked from vistarmedia/react-bootstrap-daterangepicker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.js
136 lines (124 loc) · 3.78 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
var gulp = require('gulp');
var browserify = require('gulp-browserify');
var cheerio = require('cheerio');
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 request = require('request');
var fs = require('fs');
var wrap = require('wordwrap')(2, 80);
var port = 8080;
// this task downloads the lastest .js and .css from the 'parent'
// library that we are wrapping for react
gulp.task('download', function () {
// download the .js file
download('https://raw.githubusercontent.com/dangrossman/bootstrap-daterangepicker/master/daterangepicker.js')
.pipe(gulp.dest('./lib/'));
// download the .css files
download('https://raw.githubusercontent.com/dangrossman/bootstrap-daterangepicker/master/daterangepicker.css')
.pipe(gulp.dest('./css/'));
});
gulp.task('get-options', function () {
request('http://www.daterangepicker.com/', function (error, response, body) {
var $ = cheerio.load(body);
var options = $('#options ul li code').map(function () {
return $(this).text().trim();
}).get().sort();
fs.writeFile('./lib/get-options.js', [
'"use strict";',
'/* generated by gulpfile.js */',
'module.exports = exports = function () {',
'\treturn ' + JSON.stringify(options, null, '\t\t') + ';',
'};'
].join('\n'), 'utf-8');
// fix options that contain html strings
options = options.map(function (option) {
return option.replace(/\</gi, '<').replace(/\>/gi, '>');
});
// update README.md
var before = 'You can pass all the same props as the original plugin:',
after = 'You can listen to the following 7 events:',
readme = fs.readFileSync('./README.md').toString(),
newReadme = readme.slice(0, readme.indexOf(before) + before.length) +
'\n\n- **' +
wrap(options.join(', ')).slice(2) +
'**\n\n' +
readme.slice(readme.indexOf(after));
fs.writeFileSync('./README.md', newReadme, 'utf-8');
});
});
gulp.task('lint', function () {
exec([
'node',
'./node_modules/jsxhint/cli.js',
//'--show-non-errors',
'--config',
'./.jshint',
'./lib/*.js ./demo/src/*.js',
'--exclude',
'./lib/daterangepicker.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 () {
// styles
gulp.src('./demo/src/less/demo.less')
.pipe(less())
.pipe(rename('demo.debug.css'))
.pipe(gulp.dest('./demo/www/css/'))
.pipe(cssmin())
.pipe(rename('demo.min.css'))
.pipe(gulp.dest('./demo/www/css/'));
// scripts
gulp.src('./demo/src/App.js')
.pipe(browserify({
debug: true,
transform: ['reactify']
}))
.pipe(rename('demo.debug.js'))
.pipe(gulp.dest('./demo/www/js/'))
.pipe(uglify())
.pipe(rename('demo.min.js'))
.pipe(gulp.dest('./demo/www/js/'));
});
gulp.task('server', function() {
connect.server({
root: './demo/www',
livereload: true,
port: 8080
});
});
gulp.task('watch', function () {
gulp.watch(['./lib/index.js','./demo/src/**/*.js'], ['build']);
});
gulp.task('update', ['download', 'get-options']);
gulp.task('build', ['lint', 'fonts', 'app-content', 'demo']);
gulp.task('default', ['build', 'server', 'watch']);
//handle errors
process.on('uncaughtException', function (e) {
console.error(e);
});