diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2022-09-03 18:19:30 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-03 18:19:30 +0200 |
commit | e324151520c62c9503e5e38da66827cd7815ea14 (patch) | |
tree | 51449e9ea202b758a4ac74210b97f6c9b65d26e7 /ext/node/package_json.rs | |
parent | fc4025c878a7986576f693ed3ad297212f6a99de (diff) |
BREAKING(unstable): remove --compat mode (#15678)
This commit removes "compat" mode. We shipped support for "npm:" specifier
support in v1.25 and that is preferred way to interact with Node code that we
will iterate and improve upon.
Diffstat (limited to 'ext/node/package_json.rs')
-rw-r--r-- | ext/node/package_json.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/ext/node/package_json.rs b/ext/node/package_json.rs index 15b5ab920..e5f9214fb 100644 --- a/ext/node/package_json.rs +++ b/ext/node/package_json.rs @@ -11,7 +11,6 @@ use serde::Serialize; use std::io::ErrorKind; use std::path::PathBuf; -// TODO(bartlomieju): deduplicate with cli/compat/esm_resolver.rs #[derive(Clone, Debug, Serialize)] pub struct PackageJson { pub exists: bool, |