From d5169b2e2301652d731ee822c9d26573c4f029f2 Mon Sep 17 00:00:00 2001 From: ConnorSkees <39542938+ConnorSkees@users.noreply.github.com> Date: Fri, 1 May 2020 15:48:08 -0400 Subject: [PATCH] add hidden cli arg --precision dart-sass will accept this arg, but it will ignore its value --- src/main.rs | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/main.rs b/src/main.rs index 10d330a..4a5b499 100644 --- a/src/main.rs +++ b/src/main.rs @@ -144,6 +144,13 @@ fn main() -> std::io::Result<()> { Arg::with_name("OUTPUT") .help("Output SCSS file") ) + + // Hidden, legacy arguments + .arg( + Arg::with_name("OUTPUT") + .long("precision") + .hidden(true) + ) .get_matches(); if let Some(name) = matches.value_of("INPUT") {