forked from flatpickr/flatpickr
-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.ts
248 lines (214 loc) · 6.1 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
import * as fs from "fs-extra";
import { exec as execCommand } from "child_process";
import glob from "glob";
import terser from "terser";
import chokidar from "chokidar";
import stylus from "stylus";
import stylusAutoprefixer from "autoprefixer-stylus";
import * as rollup from "rollup";
import * as path from "path";
import rollupConfig, { getConfig } from "./config/rollup";
import * as pkg from "./package.json";
const version = `/* flatpickr v${pkg.version},, @license MIT */`;
let DEV_MODE = process.argv.indexOf("--dev") > -1;
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[] = [];
function logErr(e: Error | string) {
console.error(e);
}
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): Promise<string> {
try {
const buf = await fs.readFile(path);
return buf.toString();
} catch (e) {
logErr(e);
return e.toString();
}
}
async function uglify(src: string) {
try {
const { code } = await terser.minify(src, {
output: {
preamble: version,
comments: false,
},
});
return code;
} catch (err) {
logErr(err);
}
}
async function buildFlatpickrJs() {
const bundle = await rollup.rollup(rollupConfig);
return bundle.write(rollupConfig.output as rollup.OutputOptions);
}
async function buildScripts() {
try {
await buildFlatpickrJs();
const transpiled = await readFileAsync("./dist/flatpickr.js");
fs.writeFile("./dist/flatpickr.min.js", await uglify(transpiled));
} catch (e) {
logErr(e);
}
}
function buildExtras(folder: "plugins" | "l10n") {
return async function (changedPath?: string) {
const [srcPaths, cssPaths] = await Promise.all(
changedPath !== undefined
? changedPath.endsWith(".ts")
? [[changedPath], []]
: [[], [changedPath]]
: [
resolveGlob(`./src/${folder}/**/*.ts`),
resolveGlob(`./src/${folder}/**/*.css`),
]
);
try {
await Promise.all([
...srcPaths
.filter((p) => !p.includes(".spec.ts"))
.map(async (sourcePath) => {
const bundle = await rollup.rollup({
...rollupConfig,
cache: undefined,
input: sourcePath,
});
const fileName = path.basename(
sourcePath,
path.extname(sourcePath)
);
const folderName = path.basename(path.dirname(sourcePath));
return bundle.write({
exports: folder === "l10n" ? "named" : "default",
format: "umd",
sourcemap: DEV_MODE,
file: sourcePath.replace("src", "dist").replace(".ts", ".js"),
name:
sourcePath.includes("plugins") && fileName === "index"
? `${folderName}Plugin`
: customModuleNames[fileName] || fileName,
});
}),
...(cssPaths.map((p) => fs.copy(p, p.replace("src", "dist"))) as any),
]);
} catch (err) {
logErr(err);
}
};
}
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(stylusAutoprefixer())
.render((err, css) => (!err ? resolve(css) : reject(err)));
});
}
async function buildStyle() {
try {
const [src, srcIE] = await Promise.all([
readFileAsync(paths.style),
readFileAsync("./src/style/ie.styl"),
]);
await Promise.all([
fs.writeFile("./dist/flatpickr.css", await transpileStyle(src)),
fs.writeFile("./dist/flatpickr.min.css", await transpileStyle(src, true)),
fs.writeFile("./dist/ie.css", await transpileStyle(srcIE)),
]);
} catch (e) {
logErr(e);
}
}
const themeRegex = /themes\/(.+).styl/;
async function buildThemes() {
try {
const themePaths = await resolveGlob("./src/style/themes/*.styl");
await Promise.all(
themePaths.map(async (themePath) => {
const match = themeRegex.exec(themePath);
if (!match) return;
const src = await readFileAsync(themePath);
return fs.writeFile(
`./dist/themes/${match[1]}.css`,
await transpileStyle(src)
);
})
);
} catch (err) {
logErr(err);
}
return;
}
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)
);
}
async function start() {
if (DEV_MODE) {
(rollupConfig.output as rollup.OutputOptions).sourcemap = true;
const indexExists = await fs.pathExists("./index.html");
if (!indexExists) {
await fs.copyFile("./index.template.html", "./index.html");
}
const watcher = rollup.watch([getConfig({ dev: true })]);
const exit = function () {
watcher.close();
watchers.forEach((w) => w.close());
};
//catches ctrl+c event
process.on("SIGINT", exit);
// catches "kill pid" (for example: nodemon restart)
process.on("SIGUSR1", exit);
process.on("SIGUSR2", exit);
setupWatchers();
}
try {
await fs.mkdirp("./dist/themes");
} catch {}
buildScripts();
buildStyle();
buildThemes();
buildExtras("l10n")();
buildExtras("plugins")();
}
start();