From 8c85a9d37f160818ebcc4ab1cae97fccdbe84bad Mon Sep 17 00:00:00 2001 From: Evan Hahn <69474926+EvanHahn-Signal@users.noreply.github.com> Date: Fri, 11 Feb 2022 13:33:06 -0600 Subject: [PATCH] Build both Sass files at once --- package.json | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index c42554875b1..2af8e63784e 100644 --- a/package.json +++ b/package.json @@ -22,9 +22,7 @@ "get-strings": "node ts/scripts/get-strings.js", "get-expire-time": "node ts/scripts/get-expire-time.js", "copy-and-concat": "node ts/scripts/copy-and-concat.js", - "sass": "npm-run-all sass-manifest sass-manifest-bridge", - "sass-manifest": "sass stylesheets/manifest.scss stylesheets/manifest.css", - "sass-manifest-bridge": "sass stylesheets/manifest_bridge.scss stylesheets/manifest_bridge.css", + "sass": "sass stylesheets/manifest.scss:stylesheets/manifest.css stylesheets/manifest_bridge.scss:stylesheets/manifest_bridge.css", "build-module-protobuf": "pbjs --target static-module --no-verify --no-create --wrap commonjs --out ts/protobuf/compiled.js protos/*.proto && pbts --out ts/protobuf/compiled.d.ts ts/protobuf/compiled.js", "clean-module-protobuf": "rm -f ts/protobuf/compiled.d.ts ts/protobuf/compiled.js", "build-protobuf": "yarn build-module-protobuf", @@ -54,8 +52,7 @@ "dev:webpack": "cross-env NODE_ENV=development webpack serve --mode development", "dev:typed-scss": "yarn build:typed-scss -w", "dev:storybook": "cross-env SIGNAL_ENV=storybook start-storybook -p 6006 -s ./", - "dev:sass": "npm run sass-manifest -- --watch", - "dev:sass-bridge": "npm run sass-manifest-bridge -- --watch", + "dev:sass": "yarn sass --watch", "storybook:axe": "build-storybook && axe-storybook", "build": "run-s --print-label generate build:typed-scss build:webpack build:release build:zip", "build:acknowledgments": "node scripts/generate-acknowledgments.js",