-
Notifications
You must be signed in to change notification settings - Fork 18
/
cli.ts
347 lines (313 loc) · 8.51 KB
/
cli.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
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
import {
dirname,
ensureDir,
join,
NAME,
opn,
parseArgs,
red,
serveIterable,
VERSION,
} from "./deps.ts";
import { generateAssets, watchAndGenAssets } from "./generate_assets.ts";
import {
generateStaticAssets,
watchAndGenStaticAssets,
} from "./generate_static_assets.ts";
import { livereloadServer } from "./livereload_server.ts";
import { byteSize, checkUniqueEntrypoints, mux } from "./util.ts";
import { logger, setLogLevel } from "./logger_util.ts";
import { setImportMap, setTsconfig } from "./bundle_util.ts";
function usage() {
logger.log(`
Usage: ${NAME} <command> [options]
Options:
-v, --version Output the version number
-h, --help Output usage information
Commands:
serve [options] <input...> Starts a development server
build [options] <input...> Bundles for production
help <command> Displays help information for a command
Run '${NAME} help <command>' for more information on specific commands
`.trim());
}
function usageServe() {
logger.log(`
Usage: ${NAME} serve [options] <input...>
Starts a development server
Options:
-p, --port <port> Sets the port to serve on. Default is 1234.
--livereload-port Sets the port for live reloading. Default is 35729.
-s, --static-dir <dir> The directory for static files. The files here are served as is.
--static-dist-prefix <prefix> The prefix for static files in the destination.
--public-url <prefix> The path prefix for urls. Default is ".".
-i, --import-map <file> The path to an import map file.
-c, --config <file> The path to a tsconfig file.
-o, --open Automatically opens in specified browser.
TODO --https Serves files over HTTPS.
TODO --cert <path> The path to certificate to use with HTTPS.
TODO --key <path> The path to private key to use with HTTPS.
--log-level <level> Sets the log level. "error", "warn", "info", "debug" or "trace". Default is "info".
-h, --help Displays help for command.
`.trim());
}
function usageBuild() {
logger.log(`
Usage: ${NAME} build [options] <input...>
bundles for production
Options:
--dist-dir <dir> Output directory to write to when unspecified by targets
-s, --static-dir <dir> The directory for static files. The files here are copied to dist as is.
--static-dist-prefix <prefix> The prefix for static files in the destination.
--public-url <prefix> The path prefix for urls. Default is ".".
-i, --import-map <file> The path to an import map file.
-c, --config <file> The path to a tsconfig file.
-L, --log-level <level> Set the log level (choices: "none", "error", "warn", "info", "verbose")
-h, --help Display help for command
`.trim());
}
type CliArgs = {
_: string[];
version: boolean;
help: boolean;
"dist-dir": string;
"log-level": "error" | "warn" | "info" | "debug" | "trace";
"livereload-port": string;
open: boolean;
port: string;
"public-url": string;
"static-dir": string;
"static-dist-prefix": string;
"import-map": string;
"config": string;
};
/**
* The entrypoint
*/
export async function main(cliArgs: string[] = Deno.args): Promise<number> {
const {
_: args,
version,
help,
"dist-dir": distDir = "dist",
"static-dir": staticDir = "static",
"static-dist-prefix": staticDistPrefix = "",
"log-level": logLevel = "info",
open = false,
port = "1234",
"public-url": publicUrl = ".",
"livereload-port": livereloadPort = 35729,
"import-map": importMap,
"config": config,
} = parseArgs(cliArgs, {
string: [
"log-level",
"out-dir",
"port",
"static-dir",
"public-url",
"import-map",
"config",
],
boolean: ["help", "version", "open"],
alias: {
h: "help",
v: "version",
o: "open",
s: "static-dir",
L: "log-level",
p: "port",
i: "import-map",
c: "config",
},
}) as CliArgs;
setLogLevel(logLevel);
if (version) {
logger.log(NAME, VERSION);
return 0;
}
const command = args[0];
if (help) {
if (command) {
switch (command) {
case "build":
usageBuild();
return 0;
case "serve":
usageServe();
return 0;
default:
logger.error("Error: Command not found:", command);
usage();
return 1;
}
}
usage();
return 0;
}
if (!command) {
usage();
return 1;
}
if (command === "help") {
const subcommand = args[1];
if (!subcommand) {
usage();
return 0;
}
if (subcommand === "build") {
usageBuild();
return 0;
}
if (subcommand === "serve") {
usageServe();
return 0;
}
logger.error(`${red("Error")}: Command '${subcommand}' not found`);
usage();
return 1;
}
if (command === "build") {
const entrypoints = args.slice(1);
if (!entrypoints || entrypoints.length === 0) {
usageBuild();
return 1;
}
await build(entrypoints, {
distDir,
staticDir,
publicUrl,
staticDistPrefix,
importMap,
config,
});
return 0;
}
let entrypoints: string[];
if (command === "serve") {
// packup serve <entrypoints...>
entrypoints = args.slice(1);
} else {
// Suppose command is implicitly 'serve' and args are the entrypoints
// packup <entrypoints...>
entrypoints = args;
}
if (!entrypoints || entrypoints.length === 0) {
usageServe();
return 1;
}
await serve(entrypoints, {
open,
port: +port,
livereloadPort: +livereloadPort,
staticDir,
publicUrl,
staticDistPrefix,
importMap,
config,
});
return 0;
}
type BuildAndServeCommonOptions = {
staticDir: string;
staticDistPrefix: string;
publicUrl: string;
importMap: string;
config: string;
};
type BuildOptions = {
distDir: string;
};
/**
* The build command
*/
async function build(
paths: string[],
{
distDir,
staticDir,
publicUrl,
staticDistPrefix,
importMap,
config,
}: BuildOptions & BuildAndServeCommonOptions,
) {
checkUniqueEntrypoints(paths);
setImportMap(importMap);
setTsconfig(config);
logger.log(`Writing the assets to ${distDir}`);
await ensureDir(distDir);
const staticAssets = generateStaticAssets(staticDir, {
distPrefix: staticDistPrefix,
});
const allAssets: AsyncGenerator<File, void, void>[] = [];
for (const path of paths) {
const [assets] = await generateAssets(path, { publicUrl });
allAssets.push(assets);
}
// TODO(kt3k): Use pooledMap-like thing
for await (const asset of mux(staticAssets, ...allAssets)) {
const filename = join(distDir, asset.name);
const bytes = new Uint8Array(await asset.arrayBuffer());
// TODO(kt3k): Print more structured report
logger.log("Writing", filename, byteSize(bytes.byteLength));
await ensureDir(dirname(filename));
await Deno.writeFile(filename, bytes);
}
}
type ServeOptions = {
open: boolean;
port: number;
livereloadPort: number;
};
/**
* The serve command
*/
async function serve(
paths: string[],
{
open,
port,
livereloadPort,
staticDir,
publicUrl,
staticDistPrefix,
importMap,
config,
}: ServeOptions & BuildAndServeCommonOptions,
) {
checkUniqueEntrypoints(paths);
setImportMap(importMap);
setTsconfig(config);
// This is used for propagating onBuild event to livereload server.
const buildEventHub = new EventTarget();
livereloadServer(livereloadPort, buildEventHub);
if (open) {
// Opens browser at the end of the first build
buildEventHub.addEventListener("built", () => {
opn(`http://localhost:${port}`);
}, { once: true });
}
const onBuild = () => buildEventHub.dispatchEvent(new CustomEvent("built"));
const allAssets: AsyncGenerator<File, void, void>[] = [];
for (const [index, path] of paths.entries()) {
const assets = watchAndGenAssets(path, {
livereloadPort,
onBuild,
mainAs404: index === 0,
publicUrl,
});
allAssets.push(assets);
}
const staticAssets = watchAndGenStaticAssets(staticDir, {
distPrefix: staticDistPrefix,
});
const { addr } = serveIterable(mux(...allAssets, staticAssets), { port });
if (addr.transport === "tcp") {
logger.log(`Server running at http://localhost:${addr.port}`);
}
await new Promise(() => {});
}
if (import.meta.main) {
Deno.exit(await main());
}