mirror of
https://github.com/oxc-project/oxc.git
synced 2026-09-14 19:36:11 +08:00
a4478e960a
Add `oxc-codegen` package - a printer written in TS. ### Features - Prints JS, JSX, TS, TSX. - Matches `oxc_codegen` exactly on all Test262, TypeScript, Acorn-JSX fixtures. - Very fast. ### Deficiencies - Pretty-printing only (no compact/minified output). - No support for printing comments. - Source map support is semi-there, but largely untested, and poor API (design doc has some ideas on how to improve it). ### This PR adds - The printer code. - Conformance testing infra. - Further tests for edge cases. - README. - Design doc - how it differs from `oxc_codegen` and why, what produces the perf. ### This PR doesn't add - Not integrated into CI or release pipeline. ### Notes This started as a slop port of `oxc_codegen`. I've iterated on that base, cleaned it up a lot, and at least skimmed through all of it. I think it's in fairly decent shape. The design doc is I think worth a read. It explains the rationale for the choices, in particular the "1 codebase, 4 builds" approach. I've put it in a new top-level directory called `packages`. It's not an app, so didn't seem to me to fit alongside `apps/oxlint` and `apps/oxfmt`. It's pure JS, so not like e.g. `napi/parser`. And it felt too heavyweight to put into `npm` dir. But maybe there's a better place for it. Co-authored-by: Cameron <cameron.clark@hey.com>
16 lines
566 B
TypeScript
16 lines
566 B
TypeScript
// Build script.
|
|
|
|
import { execSync } from "node:child_process";
|
|
import { rmSync } from "node:fs";
|
|
import { join as pathJoin } from "node:path";
|
|
|
|
const packageDirPath = pathJoin(import.meta.dirname, "..");
|
|
|
|
// Delete `dist` directory.
|
|
// TSDown's `clean` option can't do it, because both builds output to the same directory,
|
|
// so whichever runs second would delete the other's output.
|
|
rmSync(pathJoin(packageDirPath, "dist"), { recursive: true, force: true });
|
|
|
|
// Build both flavours with TSDown
|
|
execSync("pnpm tsdown", { stdio: "inherit", cwd: packageDirPath });
|