diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2020-07-31 16:59:22 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-31 16:59:22 +0200 |
commit | b718e6ff53156a0aae486e570ce7c9cb8a3b822a (patch) | |
tree | 6930f093a20466f4333e24eda2cd059807a36314 /cli/main.rs | |
parent | 4afb4b6e46de2ed536a3c9828d70d7799b5b6d03 (diff) |
upgrade: deno_lint, dprint, swc (#6928)
This commit upgrades:
deno_lint 0.1.20
dprint-plugin-typescript 0.25.0
swc_ecmascript 0.1.0
SWC is no longer reexported from dprint nor deno_lint.
Diffstat (limited to 'cli/main.rs')
-rw-r--r-- | cli/main.rs | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/cli/main.rs b/cli/main.rs index 3a6000c2b..cff401fba 100644 --- a/cli/main.rs +++ b/cli/main.rs @@ -67,12 +67,6 @@ pub mod version; mod web_worker; pub mod worker; -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; use crate::file_fetcher::SourceFileFetcher; |