forked from flatpickr/flatpickr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.ts
287 lines (244 loc) · 6.87 KB
/
build.ts
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
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
import * as fs from "fs-extra";
import { exec as execCommand } from "child_process";
import * as glob from "glob";
import * as uglifyJS from "uglify-js";
import * as chokidar from "chokidar";
import * as stylus from "stylus";
import * as stylus_autoprefixer from "autoprefixer-stylus";
import * as rollup from "rollup";
import * as rollup_typescript from "rollup-plugin-typescript";
import * as rollup_babel from "rollup-plugin-babel";
import * as path from "path";
const pkg = require("./package.json");
const version = `/* flatpickr v${pkg.version},, @license MIT */`;
const paths = {
themes: "./src/style/themes/*.styl",
style: "./src/style/flatpickr.styl",
plugins: "./src/plugins",
l10n: "./src/l10n",
};
const customModuleNames: Record<string, string> = {
confirmDate: "confirmDatePlugin",
};
const watchers: chokidar.FSWatcher[] = [];
interface RollupOptions {
input: rollup.InputOptions;
output: rollup.OutputOptions;
}
const rollupConfig: RollupOptions = {
input: {
input: "",
plugins: [
rollup_typescript({
// abortOnError: false,
// cacheRoot: `/tmp/.rpt2_cache`,
// clean: true,
tsconfig: path.resolve("src/tsconfig.json"),
typescript: require("typescript"),
}),
rollup_babel({
runtimeHelpers: true,
}),
],
},
output: {
file: "",
format: "umd",
exports: "auto",
banner: `/* flatpickr v${pkg.version}, @license MIT */`,
sourcemap: false,
},
};
function logErr(e: Error | string) {
console.error(e);
console.trace();
}
function startRollup(dev = false) {
return execCommand(`npm run rollup:${dev ? "start" : "build"}`);
}
function resolveGlob(g: string) {
return new Promise<string[]>((resolve, reject) => {
glob(
g,
(err: Error | null, files: string[]) =>
err ? reject(err) : resolve(files)
);
});
}
async function readFileAsync(path: string) {
return new Promise<string>((resolve, reject) => {
fs.readFile(path, (err, buffer) => {
err ? reject(err) : resolve(buffer.toString());
});
});
}
function uglify(src: string) {
const minified = uglifyJS.minify(src, {
output: {
preamble: version,
comments: false,
},
});
if (minified.error) {
logErr(minified.error);
}
return minified.code;
}
async function buildScripts() {
try {
const transpiled = await fs.readFile("./dist/flatpickr.js");
fs.writeFile("./dist/flatpickr.min.js", uglify(transpiled.toString()));
console.log("done.");
} catch (e) {
logErr(e);
}
}
function buildExtras(folder: "plugins" | "l10n") {
return async function(changed_path?: string) {
const [src_paths, css_paths] = await Promise.all([
changed_path !== undefined
? [changed_path]
: resolveGlob(`./src/${folder}/**/*.ts`),
resolveGlob(`./src/${folder}/**/*.css`),
]);
await Promise.all([
...src_paths.map(async sourcePath => {
const bundle = await rollup.rollup({
...rollupConfig.input,
cache: undefined,
input: sourcePath,
});
const fileName = path.basename(sourcePath, path.extname(sourcePath));
return bundle.write({
...rollupConfig.output,
exports: folder === "l10n" ? "named" : "default",
sourcemap: false,
file: sourcePath.replace("src", "dist").replace(".ts", ".js"),
name: customModuleNames[fileName] || fileName,
});
}),
...(css_paths.map(p => fs.copy(p, p.replace("src", "dist"))) as any),
]);
console.log("done.");
};
}
// function debounce(func: Function, wait: number, immediate?:boolean) {
// var timeout: number | NodeJS.Timer | null;
// return function(this: Function) {
// var context = this, args = arguments;
// var later = function() {
// timeout = null;
// if (!immediate) func.apply(context, args);
// };
// var callNow = immediate && !timeout;
// clearTimeout(timeout as number);
// timeout = setTimeout(later, wait);
// if (callNow) func.apply(context, args);
// };
// };
async function transpileStyle(src: string, compress = false) {
return new Promise<string>((resolve, reject) => {
stylus(src, {
compress,
} as any)
.include(`${__dirname}/src/style`)
.include(`${__dirname}/src/style/themes`)
.use(
stylus_autoprefixer({
browsers: pkg.browserslist,
})
)
.render(
(err: Error | undefined, css: string) =>
!err ? resolve(css) : reject(err)
);
});
}
async function buildStyle() {
try {
const [src, src_ie] = await Promise.all([
readFileAsync(paths.style),
readFileAsync("./src/style/ie.styl"),
]);
const [style, min, ie] = await Promise.all([
transpileStyle(src),
transpileStyle(src, true),
transpileStyle(src_ie),
]);
fs.writeFile("./dist/flatpickr.css", style);
fs.writeFile("./dist/flatpickr.min.css", min);
fs.writeFile("./dist/ie.css", ie);
} catch (e) {
logErr(e);
}
}
const themeRegex = /themes\/(.+).styl/;
async function buildThemes() {
const themePaths = await resolveGlob("./src/style/themes/*.styl");
themePaths.forEach(themePath => {
const match = themeRegex.exec(themePath);
if (!match) return;
readFileAsync(themePath)
.then(transpileStyle)
.then(css => fs.writeFile(`./dist/themes/${match[1]}.css`, css));
});
}
function setupWatchers() {
watch("./src/plugins", buildExtras("plugins"));
watch("./src/style/*.styl", () => {
buildStyle();
buildThemes();
});
watch("./src/style/themes", buildThemes);
watch("./src", (path: string) => {
execCommand(`npm run fmt -- ${path}`, {
cwd: __dirname,
});
});
}
function watch(path: string, cb: (path: string) => void) {
watchers.push(
chokidar
.watch(path, {
// awaitWriteFinish: {
// stabilityThreshold: 500,
// },
//usePolling: true,
})
.on("change", cb)
.on("error", logErr)
);
}
function start() {
const devMode = process.argv.indexOf("--dev") > -1;
const proc = startRollup(devMode);
function exit(signal: string) {
!proc.killed && proc.kill(signal);
watchers.forEach(w => w.close());
}
function log(data: string) {
process.stdout.write(`rollup: ${data}`);
}
proc.stdout.on("data", log);
proc.stderr.on("data", log);
proc.on("exit", () => {
buildScripts();
});
if (devMode) {
setupWatchers();
} else {
buildStyle();
buildThemes();
buildExtras("l10n")();
buildExtras("plugins")();
}
//do something when app is closing
//process.on('exit', proc.kill);
//catches ctrl+c event
process.on("SIGINT", exit.bind(null, "SIGKILL"));
// catches "kill pid" (for example: nodemon restart)
process.on("SIGUSR1", exit.bind(null, "SIGKILL"));
process.on("SIGUSR2", exit.bind(null, "SIGKILL"));
}
start();
process.on("unhandledRejection", logErr);