-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcli.ts
444 lines (402 loc) · 11.1 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
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
import {
colors,
Command,
CompletionsCommand,
debounce,
deferred,
fs,
path,
prettyBytes,
RollupCache,
Table,
} from "./deps/mod.ts";
import { bundle } from "./src/bundle.ts";
import { dependencyList } from "./src/dependency_graph.ts";
import { exportCommand } from "./src/export.ts";
import { serve } from "./src/serve.ts";
import { findPages, printError } from "./src/util.ts";
const VERSION = "0.10.5";
try {
await new Command()
.throwErrors()
.name("dext")
.version(VERSION)
.description("The Preact Framework for Deno")
.action(function () {
console.log(this.getHelp());
})
.command("build [root]")
.option(
"--typecheck [enabled:boolean]",
"If TypeScript code should be typechecked.",
{ default: true },
)
.option(
"--prerender [enabled:boolean]",
"If static pages should be server side prerendered.",
{ default: true },
)
.option(
"--debug [include:boolean]",
"If preact/debug should be included in the bundle.",
{ default: false },
)
.option(
"--sourcemap [enabled:boolean]",
"If sourcemap should be generated",
{ default: true },
)
.option(
"--minify [enabled:boolean]",
"If the source should be minified",
{ default: true },
)
.description("Build your application.")
.action(build)
.command("start [root]")
.option("-a --address <address>", "The address to listen on.", {
default: ":3000",
})
.option("--quiet", "If access logs should be printed.")
.description("Start a built application.")
.action(start)
.command("dev [root]")
.option("-a --address <address>", "The address to listen on.", {
default: ":3000",
})
.option(
"--hot-refresh [enabled:boolean]",
"If hot refresh should be disabled.",
{ default: true },
)
.option(
"--hot-refresh-host <host:string>",
"The hostname to use for the hot refresh websocket endpoint. Useful for proxies.",
{ depends: ["hot-refresh"] },
)
.option(
"--typecheck [enabled:boolean]",
"If TypeScript code should be typechecked.",
{ default: false },
)
.option(
"--prerender [enabled:boolean]",
"If static pages should be server side prerendered.",
{ default: false },
)
.option(
"--debug [include:boolean]",
"If preact/debug should be included in the bundle.",
{ default: true },
)
.description("Start your application in development mode.")
.action(dev)
.command("create [root]")
.description("Scaffold new application.")
.action(create)
.command("export", exportCommand())
.description("Export a project for Netlify or other providers.")
.command("completions", new CompletionsCommand())
.parse(Deno.args);
} catch (err) {
printError(err);
Deno.exit(1);
}
async function build(
options: {
typecheck: boolean;
prerender: boolean;
debug: boolean;
sourcemap: boolean;
minify: boolean;
},
root?: string,
) {
root = path.resolve(Deno.cwd(), root ?? "");
const tsconfigPath = path.join(root, "tsconfig.json");
if (!(await fs.exists(tsconfigPath))) {
console.log(
colors.red(colors.bold("Error: ") + "Missing tsconfig.json file."),
);
Deno.exit(1);
}
// Collect list of all pages
const pagesDir = path.join(root, "pages");
const pages = await findPages(pagesDir);
// Create .dext folder and emit page map
const dextDir = path.join(root, ".dext");
await fs.ensureDir(dextDir);
const pagemapPath = path.join(dextDir, "pagemap.json");
await Deno.writeTextFile(
pagemapPath,
JSON.stringify(
pages.pages.map((page) => ({
name: page.name,
route: page.route,
hasGetStaticPaths: page.hasGetStaticPaths,
})),
),
);
// Do bundling
const outDir = path.join(dextDir, "static");
const { stats } = await bundle(pages, {
rootDir: root,
outDir,
tsconfigPath,
minify: options.minify,
sourcemap: options.sourcemap,
hotRefresh: false,
typecheck: options.typecheck,
prerender: options.prerender,
debug: options.debug,
});
console.log(colors.green(colors.bold("Build success.\n")));
if (stats) {
const sharedKeys = Object.keys(stats.shared);
new Table()
.header([
colors.bold("Page"),
colors.bold("Size"),
colors.bold("First Load JS"),
])
.body([
...stats.routes.map((route, i) => {
const prefix = stats.routes.length === 1
? "-"
: i === 0
? "┌"
: i === stats.routes.length - 1
? "└"
: "├";
return [
`${prefix} ${route.hasGetStaticData ? "●" : "○"} ${route.route}`,
prettyBytes(route.size.brotli),
prettyBytes(route.firstLoad.brotli),
];
}),
[],
[
"+ First Load JS shared by all",
prettyBytes(stats.framework.brotli),
"",
],
...sharedKeys.map((name, i) => {
const size = stats.shared[name];
const isLast = i === sharedKeys.length - 1;
return [
` ${isLast ? "└" : "├"} ${name}`,
prettyBytes(size.brotli),
"",
];
}),
])
.padding(2)
.render();
console.log();
console.log("○ (Static) automatically rendered as static HTML");
console.log(
"● (SSG) automatically generated as static HTML + JSON (uses getStaticData)",
);
console.log();
console.log(
colors.gray("File sizes are measured after brotli compression."),
);
}
}
async function start(
options: { address: string; quiet: boolean },
root?: string,
) {
root = path.resolve(Deno.cwd(), root ?? "");
const dextDir = path.join(root, ".dext");
const pagemapPath = path.join(dextDir, "pagemap.json");
if (!(await fs.exists(pagemapPath))) {
console.log(
colors.red(
colors.bold("Error: ") +
"Page map does not exist. Did you build the project?",
),
);
Deno.exit(1);
}
const pagemap = JSON.parse(await Deno.readTextFile(pagemapPath));
const staticDir = path.join(dextDir, "static");
await serve(pagemap, {
staticDir,
address: options.address,
quiet: options.quiet,
});
}
async function dev(
options: {
address: string;
hotRefresh: boolean;
hotRefreshHost: string;
typecheck: boolean;
prerender: boolean;
debug: boolean;
},
maybeRoot?: string,
) {
const root = path.resolve(Deno.cwd(), maybeRoot ?? "");
const tsconfigPath = path.join(root, "tsconfig.json");
if (!(await fs.exists(tsconfigPath))) {
console.log(
colors.red(colors.bold("Error: ") + "Missing tsconfig.json file."),
);
Deno.exit(1);
}
let cache: RollupCache = { modules: [] };
// Collect list of all pages
const pagesDir = path.join(root, "pages");
const pages = await findPages(pagesDir);
const dextDir = path.join(root, ".dext");
await fs.ensureDir(dextDir);
const outDir = path.join(dextDir, "static");
let doHotRefresh = deferred();
const hotRefresh = (async function* () {
while (true) {
await doHotRefresh;
doHotRefresh = deferred();
yield;
}
})();
const run = debounce(async function () {
const start = new Date();
console.log(colors.cyan(colors.bold("Started build...")));
try {
const out = await bundle(pages, {
rootDir: root,
outDir,
tsconfigPath,
cache,
minify: false,
sourcemap: true,
hotRefresh: options.hotRefresh,
hotRefreshHost: options.hotRefreshHost,
typecheck: options.typecheck,
prerender: options.prerender,
debug: options.debug,
});
cache = out.cache!;
doHotRefresh.resolve();
console.log(
colors.green(
colors.bold(
`Build success done ${
(
new Date().getTime() - start.getTime()
).toFixed(0)
}ms`,
),
),
);
} catch (err) {
printError(err);
}
}, 100);
const pagesPaths = pages.pages.map((page) => page.path);
if (pages.app) pagesPaths.push(pages.app.path);
if (pages.document) pagesPaths.push(pages.document.path);
const deps = await dependencyList(pagesPaths);
const toWatch = deps
.filter((dep) => dep.startsWith(`file://`))
.map(path.fromFileUrl)
.filter((dep) => dep.startsWith(root));
const publicDir = path.join(root, "public");
if (await fs.exists(publicDir)) toWatch.push(publicDir);
(async () => {
for await (const { kind } of Deno.watchFs(toWatch, { recursive: true })) {
if (kind === "any" || kind === "access") continue;
await run();
}
})();
const server = serve(pages.pages, {
staticDir: outDir,
address: options.address,
quiet: true,
hotRefresh,
});
await run();
await server;
}
async function create(_options: unknown, maybeRoot?: string) {
const root = path.resolve(Deno.cwd(), maybeRoot ?? "");
await fs.ensureDir(root);
const gitIgnorePath = path.join(root, ".gitignore");
await Deno.writeTextFile(gitIgnorePath, "/.dext\n");
const tsconfigPath = path.join(root, "tsconfig.json");
await Deno.writeTextFile(
tsconfigPath,
JSON.stringify({
compilerOptions: {
lib: ["esnext", "dom", "deno.ns"],
jsx: "react",
jsxFactory: "h",
jsxFragmentFactory: "Fragment",
},
}),
);
const pagesDir = path.join(root, "pages");
await fs.ensureDir(pagesDir);
const depsPath = path.join(root, "deps.ts");
const depsText =
`export { Fragment, h } from "https://deno.land/x/dext@${VERSION}/deps/preact/mod.ts";
export type {
AppProps,
GetStaticData,
GetStaticDataContext,
GetStaticPaths,
PageProps,
} from "https://deno.land/x/dext@${VERSION}/mod.ts";
`;
await Deno.writeTextFile(depsPath, depsText);
const indexPath = path.join(pagesDir, "index.tsx");
const indexText = `import { h, Fragment } from "../deps.ts";
import type { PageProps, GetStaticData } from "../deps.ts";
interface Data {
random: string;
}
function IndexPage(props: PageProps<Data>) {
return (
<>
<h1>Hello World!!!</h1>
<p>This is the index page.</p>
<p>The random is {props.data.random}.</p>
<p>
<a href="/user/lucacasonato">Go to @lucacasonato</a>
</p>
</>
);
}
export const getStaticData = (): GetStaticData<Data> => {
return {
data: {
random: Math.random().toString(),
},
};
};
export default IndexPage;
`;
await Deno.writeTextFile(indexPath, indexText);
const userDir = path.join(pagesDir, "user");
await fs.ensureDir(userDir);
const userPath = path.join(userDir, "[name].tsx");
const userText = `import { h, Fragment } from "../../deps.ts";
import type { PageProps } from "../../deps.ts";
function UserPage(props: PageProps) {
const name = props.route?.name ?? "";
return (
<>
<h1>This is the page for {name}</h1>
<p>
<a href="/">Go home</a>
</p>
</>
);
}
export default UserPage;
`;
await Deno.writeTextFile(userPath, userText);
console.log(colors.green(colors.bold(`New project created in ${root}`)));
}