From 841ea3ff97cacd43d8c58381e64577df71969888 Mon Sep 17 00:00:00 2001 From: Jon Edvald Date: Tue, 20 Jun 2023 23:10:10 -0700 Subject: [PATCH] fix(cli): ignore deprecated --skip-watch flag in deploy command --- core/src/commands/deploy.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/core/src/commands/deploy.ts b/core/src/commands/deploy.ts index 29798bc089..02e6f8c6b6 100644 --- a/core/src/commands/deploy.ts +++ b/core/src/commands/deploy.ts @@ -105,6 +105,10 @@ export const deployOpts = { "timestamps": new BooleanParameter({ help: "Show timestamps with log output. Should be used with the `--logs` option (has no effect if that option is not used).", }), + "skip-watch": new BooleanParameter({ + help: "(keeping for backwards compatibility with 0.12.x)", + hidden: true, + }), ...serveOpts, }