mirror of
https://github.com/pezkuwichain/pezkuwi-ui.git
synced 2026-04-22 20:48:03 +00:00
23 lines
458 B
Bash
Executable File
23 lines
458 B
Bash
Executable File
#!/bin/bash
|
|
# Copyright 2017-2020 @polkadot/ui authors & contributors
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
function copy_folder () {
|
|
SRC="packages/$1/build"
|
|
DST="../extension/node_modules/@polkadot/$1"
|
|
|
|
echo "** Copying $SRC to $DST"
|
|
|
|
rm -rf $DST
|
|
cp -r $SRC $DST
|
|
}
|
|
|
|
yarn polkadot-dev-build-ts
|
|
|
|
copy_folder "react-identicon"
|
|
copy_folder "react-qr"
|
|
copy_folder "ui-assets"
|
|
copy_folder "ui-keyring"
|
|
copy_folder "ui-settings"
|
|
copy_folder "ui-shared"
|