mirror of
https://github.com/pezkuwichain/pezkuwi-ui.git
synced 2026-04-22 05:37:58 +00:00
6f601dd343
* Bump api (interfaced types) * Bump deps for api
19 lines
313 B
Bash
Executable File
19 lines
313 B
Bash
Executable File
#!/bin/sh
|
|
|
|
function copy_folder () {
|
|
SRC="packages/$1/build"
|
|
DST="apps/node_modules/@polkadot/$1"
|
|
|
|
echo "** Copying $SRC to apps/$DST"
|
|
|
|
rm -rf ../$DST
|
|
cp -r $SRC ../$DST
|
|
}
|
|
|
|
yarn polkadot-dev-build-ts
|
|
|
|
copy_folder "ui-assets"
|
|
copy_folder "ui-identicon"
|
|
copy_folder "ui-keyring"
|
|
copy_folder "ui-settings"
|