From 1c6e09b1cebcc2964197778baddf7cced90da160 Mon Sep 17 00:00:00 2001 From: Mark Stacey Date: Wed, 13 Nov 2019 16:54:04 -0400 Subject: [PATCH] Fix sourcemaps The `install` script of `@sentry/cli` is required for the Sentry CLI to work correctly. Without this step, the sourcemap upload fails silently. --- .circleci/scripts/deps-install.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.circleci/scripts/deps-install.sh b/.circleci/scripts/deps-install.sh index 20954ec0b..605eb8593 100755 --- a/.circleci/scripts/deps-install.sh +++ b/.circleci/scripts/deps-install.sh @@ -20,3 +20,6 @@ yarn --frozen-lockfile --ignore-scripts --har (cd node_modules/weak && yarn run install) (cd node_modules/chromedriver && yarn run install) (cd node_modules/geckodriver && yarn run postinstall) + +# for release +(cd node_modules/@sentry/cli && yarn run install)