denoland / deno_ast

Source text parsing, lexing, and AST related functionality for Deno
https://crates.io/crates/deno_ast
MIT License
148 stars 45 forks source link

missing crate feature "minifier" #129

Closed deckchairlabs closed 1 year ago

deckchairlabs commented 1 year ago

lib.rs has a cfg annotation for the "minifier" feature, although the Cargo.toml doesn't specifiy it

dsherret commented 1 year ago

Oh, thanks for pointing it out. Probably leftover from when we removed the feature from this crate. We should remove that line in lib.rs. We don’t use a minifier and if someone wants to use swc’s then they can import that crate.

deckchairlabs commented 1 year ago

Not a problem, just found it confusing!