mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
13 lines
318 B
Plaintext
13 lines
318 B
Plaintext
|
#!/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
|