oxc/.github/labeler.yml
Boshen ceeee5909b
Remove HIR (#917)
closes #273
closes #814

HIR is removed from this PR, with the minifier being commented out.

HIR is a wonderful idea for compiling to lower languages, but after
sitting on it for a few months I found that it only adds confusion and
uncertainties to both myself and future contributors.

It also adds too much burden to maintainers if we plan to support more
downstream tools.

1 AST is the only way.
2023-09-15 23:48:32 +08:00

19 lines
383 B
YAML

A-ast:
- any: ['crates/oxc_ast/**/*']
A-cli:
- any: ['crates/oxc_cli/**/*', 'npm/**/*']
A-linter: 'crates/oxc_linter/**/*'
A-minifier: 'crates/oxc_minifier/**/*'
A-parser: 'crates/oxc_parser/**/*'
A-printer: 'crates/oxc_minifier/src/printer/**/*'
A-semantic: 'crates/oxc_semantic/**/*'
A-resolver: 'crates/oxc_resolver/**/*'
A-type-checking: 'crates/oxc_type_synthesis/**/*'