diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2020-07-11 11:47:06 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-11 11:47:06 +0200 |
commit | 98f6a5a47d6b47b1ac7f09a2923d6051de7aca70 (patch) | |
tree | 5d1da6d8818340ec0df6e93e2d08fe1cfedc3e61 /cli/main.rs | |
parent | 5ec41cbcc2778a80b6ee91f0c391fc2edec0a8e0 (diff) |
chore: upgrade deno_lint, remove direct dprint dep (#6679)
This PR removes direct dependency on dprint-plugin-typescript
and swc_ecma_visit. Both of these dependencies have been
pushed out to deno_lint crate. This should make it a bit easier
to do the upgrades and prevent having conflicting crate requirements.
Diffstat (limited to 'cli/main.rs')
-rw-r--r-- | cli/main.rs | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/cli/main.rs b/cli/main.rs index 5a40a0da2..9669d0938 100644 --- a/cli/main.rs +++ b/cli/main.rs @@ -66,9 +66,11 @@ pub mod version; mod web_worker; pub mod worker; -pub use dprint_plugin_typescript::swc_common; -pub use dprint_plugin_typescript::swc_ecma_ast; -pub use dprint_plugin_typescript::swc_ecma_parser; +pub use deno_lint::dprint_plugin_typescript; +pub use deno_lint::swc_common; +pub use deno_lint::swc_ecma_ast; +pub use deno_lint::swc_ecma_parser; +pub use deno_lint::swc_ecma_visit; use crate::doc::parser::DocFileLoader; use crate::file_fetcher::SourceFile; |