forked from flatpickr/flatpickr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.js
211 lines (180 loc) · 5.08 KB
/
build.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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
const fs = require('fs');
const glob = require("glob");
const babel = require("babel-core");
const uglifyJS = require("uglify-js");
const ncp = require("ncp");
const chokidar = require("chokidar");
const stylus = require("stylus");
const stylus_autoprefixer = require("autoprefixer-stylus");
const eslint = new (require("eslint").CLIEngine)();
const lintFormatter = eslint.getFormatter();
const livereload = require("livereload");
const server = require("http-server");
const opn = require("opn");
const paths = {
script: "./src/flatpickr.js",
themes: "./src/style/themes/*.styl",
style: "./src/style/flatpickr.styl",
plugins: "./src/plugins",
l10n: "./src/l10n"
}
function logErr(e){
console.error(e);
}
function lint(code, filename){
const report = eslint.executeOnText(code, filename);
if (report.errorCount || report.warningCount)
process.stdout.write(
lintFormatter(report.results)
);
else
console.info("Linting: OK ✓")
}
async function recursiveCopy(src, dest) {
return new Promise((resolve, reject) => {
ncp(src, dest, err => {
if (!err)
resolve();
else
reject();
});
})
}
async function readFileAsync(path) {
return new Promise((resolve, reject) => {
fs.readFile(path, (err, buffer) => {
if (err)
reject(err);
else
resolve(buffer.toString());
})
})
}
async function writeFileAsync(path, content) {
return new Promise((resolve, reject) => {
fs.writeFile(path, content, (err, ok) => {
if (err)
reject(err);
else
resolve();
})
})
}
function transpile(src){
return babel.transform(src, {
"presets": [ "es2015" ],
"plugins": ["transform-remove-strict-mode", "transform-object-assign"]
}).code;
}
function uglify(src) {
return uglifyJS.minify(src, {
fromString: true
}).code;
}
async function buildScripts(){
const src = await readFileAsync(paths.script).catch(logErr);
lint(src, paths.script);
const transpiled = transpile(src);
writeFileAsync("./dist/flatpickr.js", transpiled).catch(logErr);
writeFileAsync("./dist/flatpickr.min.js", uglify(transpiled)).catch(logErr);
}
function resolveGlob(g) {
return new Promise((resolve, reject) => {
glob(g, (err, files) =>{
if (err)
reject(err);
else
resolve(files);
});
});
}
function buildExtras(folder){
return async function(){
await recursiveCopy(`./src/${folder}`, `./dist/${folder}`);
const paths = await resolveGlob(`./dist/${folder}/**/*.js`);
paths.forEach(path => {
readFileAsync(path)
.then(src => {
writeFileAsync(path, transpile(src))
.catch(logErr);
})
.catch(logErr);
});
}
}
async function transpileStyle(src, compress=false){
return new Promise((resolve, reject) => {
stylus(src, {
compress
})
.include(`${__dirname}/src/style/themes`)
.use(stylus_autoprefixer({
browsers: [
"ie >= 9",
"last 2 versions",
"safari >= 7"
]
}))
.render((err, css) => {
if (!err)
resolve(css);
else
reject(err);
});
});
}
async function buildStyle(){
const src = await readFileAsync(paths.style);
const [style, min] = await Promise.all([
transpileStyle(src),
transpileStyle(src, true),
]);
writeFileAsync("./dist/flatpickr.css", style).catch(logErr);
writeFileAsync("./dist/flatpickr.min.css", min).catch(logErr);
}
async function buildThemes(){
const themePaths = await resolveGlob("./src/style/themes/*.styl");
themePaths.forEach(themePath => {
const themeName = /themes\/(.+).styl/.exec(themePath)[1];
readFileAsync(themePath)
.then(transpileStyle)
.then(css => writeFileAsync(`./dist/themes/${themeName}.css`, css));
});
}
function setupWatchers(){
watch(paths.script, buildScripts);
watch("./src/plugins", buildExtras("plugins"));
watch(paths.style, () => {buildStyle(); buildThemes();});
watch("./src/style/themes", buildThemes);
}
function serve(){
livereload.createServer().watch("./dist");
server.createServer().listen(8080);
}
function watch(path, cb){
chokidar.watch(path, {
awaitWriteFinish: {
stabilityThreshold: 100
}
})
.on('change', cb)
.on('error', logErr);
}
function start(){
process.stdout.write('\033c');
const devMode = process.argv.includes("--dev");
if (devMode) {
setupWatchers();
serve();
opn("http://localhost:8080");
}
else {
buildScripts();
buildStyle();
buildThemes();
buildExtras("l10n");
buildExtras("plugins");
}
}
start();
process.on('unhandledRejection', logErr);