From 0aafd25a6f9886ceb203b11551b477fbd8f015d0 Mon Sep 17 00:00:00 2001 From: Richard Knoll Date: Thu, 5 Oct 2023 10:10:26 -0700 Subject: [PATCH] add shorter no-webapps alias --- 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;