From 8b59dff789c94bf7a779f728ac7d4b232c640393 Mon Sep 17 00:00:00 2001 From: Richard Knoll Date: Mon, 9 Oct 2023 14:21:55 -0700 Subject: [PATCH] add shorter no-webapps alias (#9709) --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 9812c36cf191..e6c8a63b0668 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -691,7 +691,7 @@ const kiosk = gulp.series(cleanKiosk, buildKiosk, gulp.series(copyKioskCss, copy Webapp build wrappers *********************************************************/ -const shouldBuildWebapps = () => (process.argv.indexOf("--no-webapps") === -1); +const shouldBuildWebapps = () => (process.argv.indexOf("--no-webapps") === -1 && process.argv.indexOf("-n") === -1); const maybeUpdateWebappStrings = () => { if (!shouldBuildWebapps()) return noop;