chore: add resolver to README and ci labeler

This commit is contained in:
Boshen 2023-07-21 12:13:15 +08:00
parent 133c81ba1a
commit a27b60cfb4
No known key found for this signature in database
GPG key ID: A69211CB52CC6548
2 changed files with 5 additions and 1 deletions

4
.github/labeler.yml vendored
View file

@ -14,4 +14,6 @@ A-printer: 'crates/oxc_minifier/src/printer/**/*'
A-semantic: 'crates/oxc_semantic/**/*'
A-type-checking: 'crates/oxc_type_synthesis/**/*'
A-resolver: 'crates/oxc_resolver/**/*'
A-type-checking: 'crates/oxc_type_synthesis/**/*'

View file

@ -45,6 +45,7 @@ The Oxidation Compiler is creating a suite of high-performance tools for the Jav
* Formatter ([prettier][prettier])
* Transpiler ([babel][babel])
* [Minifier](./crates/oxc_minifier) ([terser][terser]) - [Prototype](https://github.com/Boshen/oxc/tree/main/crates/oxc_minifier)
* [Resolver](./crates/oxc_resolver) ([enhanced-resolve](enhanced-resolve))
* Type Checker - See [ezno][ezno], available via `npx oxidation-compiler@latest check path`
[docs-ast]: https://docs.rs/oxc/latest/oxc/ast/index.html
@ -57,6 +58,7 @@ The Oxidation Compiler is creating a suite of high-performance tools for the Jav
[prettier]: https://github.com/prettier/prettier
[ezno]: https://github.com/kaleidawave/ezno
[terser]: https://terser.org
[enhanced-resolve]: https://github.com/webpack/enhanced-resolve
## Philosophy