From a27b60cfb4d0e7f4f75f97d2c9fdbbae1fb4e1b1 Mon Sep 17 00:00:00 2001 From: Boshen Date: Fri, 21 Jul 2023 12:13:15 +0800 Subject: [PATCH] chore: add resolver to README and ci labeler --- .github/labeler.yml | 4 +++- README.md | 2 ++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/labeler.yml b/.github/labeler.yml index baaf224dc..6c569ec24 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -14,4 +14,6 @@ A-printer: 'crates/oxc_minifier/src/printer/**/*' A-semantic: 'crates/oxc_semantic/**/*' -A-type-checking: 'crates/oxc_type_synthesis/**/*' \ No newline at end of file +A-resolver: 'crates/oxc_resolver/**/*' + +A-type-checking: 'crates/oxc_type_synthesis/**/*' diff --git a/README.md b/README.md index 102bcc5ee..9d7f5e98b 100644 --- a/README.md +++ b/README.md @@ -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