Skip to content

Commit

Permalink
feat(codegen): move minifying printer to codegen crate
Browse files Browse the repository at this point in the history
  • Loading branch information
Boshen committed Oct 12, 2023
1 parent f28d96c commit 45b925c
Show file tree
Hide file tree
Showing 12 changed files with 561 additions and 583 deletions.
2 changes: 1 addition & 1 deletion .github/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ A-minifier: 'crates/oxc_minifier/**/*'

A-parser: 'crates/oxc_parser/**/*'

A-printer: 'crates/oxc_minifier/src/printer/**/*'
A-codegen: 'crates/oxc_codegen/**/*'

A-semantic: 'crates/oxc_semantic/**/*'

Expand Down
4 changes: 4 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions crates/oxc_codegen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ doctest = false
oxc_ast = { workspace = true }
oxc_span = { workspace = true }
oxc_allocator = { workspace = true }
oxc_syntax = { workspace = true }

bitflags = { workspace = true }
num-bigint = { workspace = true }

[dev-dependencies]
oxc_parser = { workspace = true }
File renamed without changes.
Loading

0 comments on commit 45b925c

Please sign in to comment.