From a4e253bcf99dfccb0d74b3bd7cea440ccc387018 Mon Sep 17 00:00:00 2001 From: Jack Westbrook Date: Wed, 1 Sep 2021 12:31:50 +0200 Subject: [PATCH] Fix: Prevent yarn start exiting early on TS errors (#38777) --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 064c4691619..c34818e0f39 100644 --- a/package.json +++ b/package.json @@ -42,7 +42,7 @@ "stats": "webpack --mode production --config scripts/webpack/webpack.prod.js --profile --json > compilation-stats.json", "storybook": "yarn workspace @grafana/ui storybook --ci", "storybook:build": "yarn workspace @grafana/ui storybook:build", - "themes:generate": "ts-node --project ./scripts/cli/tsconfig.json ./scripts/cli/generateSassVariableFiles.ts", + "themes:generate": "ts-node --transpile-only --project ./scripts/cli/tsconfig.json ./scripts/cli/generateSassVariableFiles.ts", "typecheck": "tsc --noEmit && yarn run packages:typecheck", "plugins:build-bundled": "grafana-toolkit plugin:bundle-managed", "watch": "yarn start -d watch,start core:start --watchTheme",