summaryrefslogtreecommitdiff
path: root/cli
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2024-07-05 03:38:12 +0100
committerGitHub <noreply@github.com>2024-07-05 04:38:12 +0200
commit0bbfd6fb3dcae70c3cd727ef1cb45296f83c9680 (patch)
tree8f04f2cab386341dd56ee5061a4cfa6014af9a35 /cli
parentd91215d418bfbaa22eb973a9a67cc2aa6aa8ac6b (diff)
feat: Deprecate --lock-write flag (#24436)
This commit deprecates `--lock-write` flag by removing it from the help output and printing a warning message when it's used. Users should use `--frozen=false` instead which was added in https://github.com/denoland/deno/pull/24355. Towards https://github.com/denoland/deno/issues/24167.
Diffstat (limited to 'cli')
-rw-r--r--cli/args/flags.rs4
-rw-r--r--cli/args/lockfile.rs4
2 files changed, 8 insertions, 0 deletions
diff --git a/cli/args/flags.rs b/cli/args/flags.rs
index 56fb4f09d..4d0465caa 100644
--- a/cli/args/flags.rs
+++ b/cli/args/flags.rs
@@ -546,6 +546,7 @@ pub struct Flags {
pub inspect_wait: Option<SocketAddr>,
pub inspect: Option<SocketAddr>,
pub location: Option<Url>,
+ // TODO(bartlomieju): deprecated, to be removed in Deno 2.
pub lock_write: bool,
pub lock: Option<String>,
pub log_level: Option<Level>,
@@ -3623,12 +3624,14 @@ If value is not provided, defaults to \"deno.lock\" in the current working direc
.value_hint(ValueHint::FilePath)
}
+// TODO(bartlomieju): deprecated, to be removed in Deno 2.
fn lock_write_arg() -> Arg {
Arg::new("lock-write")
.action(ArgAction::SetTrue)
.long("lock-write")
.help("Force overwriting the lock file.")
.conflicts_with("no-lock")
+ .hide(true)
}
fn no_lock_arg() -> Arg {
@@ -4747,6 +4750,7 @@ fn check_arg_parse(flags: &mut Flags, matches: &mut ArgMatches) {
fn lock_args_parse(flags: &mut Flags, matches: &mut ArgMatches) {
lock_arg_parse(flags, matches);
no_lock_arg_parse(flags, matches);
+ // TODO(bartlomieju): deprecated, to be removed in Deno 2.
if matches.get_flag("lock-write") {
flags.lock_write = true;
}
diff --git a/cli/args/lockfile.rs b/cli/args/lockfile.rs
index d18c871aa..3421addae 100644
--- a/cli/args/lockfile.rs
+++ b/cli/args/lockfile.rs
@@ -130,6 +130,10 @@ impl CliLockfile {
};
let lockfile = if flags.lock_write {
+ log::warn!(
+ "{} \"--lock-write\" flag is deprecated and will be removed in Deno 2.",
+ crate::colors::yellow("Warning")
+ );
CliLockfile::new(
Lockfile::new_empty(filename, true),
flags.frozen_lockfile,