Skip to content

Commit 18b272d

Browse files
author
Aleksandr Penskoi
committed
Update nft-marketplace to the dev version
1 parent 7cb4fe9 commit 18b272d

File tree

4 files changed

+21
-9
lines changed

4 files changed

+21
-9
lines changed

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,6 @@
1313
[submodule "plutus-use-cases"]
1414
path = plutus-use-cases
1515
url = https://github.com/mlabs-haskell/plutus-use-cases
16+
[submodule "seabug-contracts"]
17+
path = seabug-contracts
18+
url = https://github.com/mlabs-haskell/seabug-contracts

buildFrontendStage2.sh

Lines changed: 16 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,24 @@
11
set -e
22
set -x
3-
cd cardano-transaction-lib
3+
4+
SEABUG=$PWD
5+
6+
cd $SEABUG/cardano-transaction-lib
47
npm run bundle-seabug
5-
cd npm-packages/cardano-transaction-lib-seabug
8+
9+
cd $SEABUG/npm-packages/cardano-transaction-lib-seabug
610
npm install
7-
cd ../../..
11+
12+
cd $SEABUG/nft-marketplace
13+
npm install
14+
815
# This is a replacement of npm link. npm link is problematic on immutable file systems
9-
rm -rf nft-marketplace/node_modules/cardano-transaction-lib-seabug
10-
mkdir -p $PWD/nft-marketplace/node_modules/
11-
ln -s $PWD/cardano-transaction-lib/npm-packages/cardano-transaction-lib-seabug\
12-
$PWD/nft-marketplace/node_modules/cardano-transaction-lib-seabug
13-
cd nft-marketplace
16+
rm -rf $SEABUG/nft-marketplace/node_modules/seabug-contracts
17+
mkdir -p $SEABUG/nft-marketplace/node_modules/
18+
ln -s $SEABUG/seabug-contracts \
19+
$SEABUG/nft-marketplace/node_modules/seabug-contracts
20+
21+
cd $SEABUG/nft-marketplace
1422
rm .env
1523
cat <<EOT >> .env
1624
SKIP_PREFLIGHT_CHECK=true

seabug-contracts

Submodule seabug-contracts added at aca332c

0 commit comments

Comments
 (0)