From 8494af6faaa05aae8dfd3ea634afcc1d044d08ce Mon Sep 17 00:00:00 2001 From: automated-signal <37887102+automated-signal@users.noreply.github.com> Date: Mon, 1 Jul 2024 16:32:55 -0500 Subject: [PATCH] Fix `npm run dev:transpile` Co-authored-by: Fedor Indutny <79877362+indutny-signal@users.noreply.github.com> --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 3e8bab8633..9fe53440eb 100644 --- a/package.json +++ b/package.json @@ -65,9 +65,9 @@ "clean-transpile": "run-s clean-transpile-once clean-transpile-once", "ready": "npm-run-all --print-label clean-transpile generate --parallel lint lint-deps lint-intl test-node test-electron", "dev": "npm run build-protobuf && cross-env SIGNAL_ENV=storybook storybook dev --port 6006", - "dev:transpile": "run-p \"check:types --watch\" dev:esbuild dev:icu-types", + "dev:transpile": "run-p \"check:types -- --watch\" dev:esbuild dev:icu-types", "dev:esbuild": "node scripts/esbuild.js --watch", - "dev:sass": "npm run sass --watch", + "dev:sass": "npm run sass -- --watch", "dev:icu-types": "chokidar ./_locales/en/messages.json --initial --command \"npm run build:icu-types\"", "build:storybook": "npm run build-protobuf && cross-env SIGNAL_ENV=storybook storybook build", "test:storybook": "npm run build:storybook && run-p --race test:storybook:*",