forked from flatpickr/flatpickr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.ts
216 lines (184 loc) · 5.04 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
import * as fs from "fs";
import { promisify } from "util";
import { exec as execCommand } from "child_process";
import * as glob from "glob";
import * as uglifyJS from "uglify-js";
import { ncp } from "ncp";
import * as chokidar from "chokidar";
import * as stylus from "stylus";
import * as stylus_autoprefixer from "autoprefixer-stylus";
import * as typescript from "typescript";
const tsconfig = require("./tsconfig.json");
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",
};
function logErr(e: Error | string) {
console.error(e);
}
const writeFileAsync = promisify(fs.writeFile);
const removeFile = promisify(fs.unlink);
async function startRollup(dev = false) {
execCommand(
`npm run rollup:${dev ? "start" : "build"}`,
(error, stdout, stderr) => {
if (error) {
console.error(`exec error: ${error}`);
return;
}
console.log(stdout);
console.log(stderr);
}
);
}
function resolveGlob(g: string) {
return new Promise<string[]>((resolve, reject) => {
glob(
g,
(err: Error, files: string[]) => (err ? reject(err) : resolve(files))
);
});
}
async function recursiveCopy(src: string, dest: string) {
return new Promise((resolve, reject) => {
ncp(
src,
dest,
(err: Error | undefined) => (!err ? resolve() : reject(err))
);
});
}
async function readFileAsync(path: string) {
return new Promise<string>((resolve, reject) => {
fs.readFile(path, (err, buffer) => {
err ? reject(err) : resolve(buffer.toString());
});
});
}
function compile(src: string, config = tsconfig) {
//return typescript.transpileModule(src, config).outputText;
return typescript.transpile(src, config);
}
function uglify(src: string) {
const minified = uglifyJS.minify(src, {
output: {
preamble: version,
comments: false,
},
} as any);
(minified as any).error && console.log((minified as any).error);
return minified.code;
}
async function buildScripts() {
try {
const transpiled = await readFileAsync("./dist/flatpickr.js");
writeFileAsync("./dist/flatpickr.min.js", uglify(transpiled)).catch(logErr);
} catch (e) {
logErr(e);
}
}
const extrasConfig = {
...tsconfig,
compilerOptions: {
...tsconfig.compilerOptions,
module: "none",
},
};
delete extrasConfig.compilerOptions.module;
function buildExtras(folder: "plugins" | "l10n") {
return async function() {
console.log(`building ${folder}...`);
await recursiveCopy(`./src/${folder}`, `./dist/${folder}`);
const paths = await resolveGlob(`./dist/${folder}/**/*.ts`);
await Promise.all(
paths.map(async p => {
await writeFileAsync(
p.replace(".ts", ".js"),
compile(await readFileAsync(p), extrasConfig)
);
return removeFile(p);
})
);
console.log("done.");
};
}
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() {
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),
]);
writeFileAsync("./dist/flatpickr.css", style).catch(logErr);
writeFileAsync("./dist/flatpickr.min.css", min).catch(logErr);
writeFileAsync("./dist/ie.css", ie).catch(logErr);
}
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 => writeFileAsync(`./dist/themes/${match[1]}.css`, css));
});
}
function setupWatchers() {
watch("./src/plugins", buildExtras("plugins"));
watch("./src/style/*.styl", () => {
buildStyle();
buildThemes();
});
watch("./src/style/themes", buildThemes);
}
function watch<F extends () => void>(path: string, cb: F) {
chokidar
.watch(path, {
awaitWriteFinish: {
stabilityThreshold: 100,
},
})
.on("change", cb)
.on("error", logErr);
}
function start() {
const devMode = process.argv.indexOf("--dev") > -1;
startRollup(devMode);
if (devMode) {
setupWatchers();
} else {
buildScripts();
buildStyle();
buildThemes();
buildExtras("l10n")();
buildExtras("plugins")();
}
}
start();
process.on("unhandledRejection", logErr);