mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
1c6e09b1ce
The `install` script of `@sentry/cli` is required for the Sentry CLI to work correctly. Without this step, the sourcemap upload fails silently.
26 lines
698 B
Bash
Executable File
26 lines
698 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -x
|
|
|
|
yarn --frozen-lockfile --ignore-scripts --har
|
|
|
|
# run each in subshell so directory change does not persist
|
|
# scripts can be any of:
|
|
# preinstall
|
|
# install
|
|
# postinstall
|
|
|
|
# for build
|
|
(cd node_modules/node-sass && yarn run postinstall)
|
|
(cd node_modules/optipng-bin && yarn run postinstall)
|
|
(cd node_modules/gifsicle && yarn run postinstall)
|
|
(cd node_modules/jpegtran-bin && yarn run postinstall)
|
|
|
|
# for test
|
|
(cd node_modules/scrypt && yarn run install)
|
|
(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)
|