-
Notifications
You must be signed in to change notification settings - Fork 5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7223 from MetaMask/Version-v7.3.0
Version v7.3.0 RC
- Loading branch information
Showing
276 changed files
with
9,704 additions
and
27,790 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/usr/bin/env bash | ||
set -x | ||
|
||
mkdir -p build-artifacts/yarn-install-har | ||
mv ./*.har build-artifacts/yarn-install-har/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -x | ||
set -e | ||
set -u | ||
set -o pipefail | ||
|
||
# prepare artifacts dir | ||
mkdir -p ./build-artifacts/deps-viz/ | ||
|
||
# generate viz | ||
SESIFY_AUTOGEN=1 npx gulp build:extension:js:background | ||
npx sesify-viz --deps sesify/deps-background.json --config sesify/background.json --dest ./build-artifacts/deps-viz/background |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#!/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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,7 +33,7 @@ | |
"always", | ||
{ | ||
"ignore": [ | ||
"after-comment", | ||
"after-comment" | ||
] | ||
} | ||
], | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.