fix: build

This commit is contained in:
chaseeb 2021-06-23 10:26:48 -04:00
parent df44dfe93e
commit 6087d2195c
3 changed files with 3 additions and 3 deletions

View File

@ -4,7 +4,6 @@ yarn bootstrap
echo "Preparing 'common'..." echo "Preparing 'common'..."
cd packages/common || exit cd packages/common || exit
yarn prepare yarn prepare
yarn build-css
cd ../web || exit cd ../web || exit
echo "Prestarting 'web'..." echo "Prestarting 'web'..."
yarn prestart yarn prestart

View File

@ -15,7 +15,8 @@
"node": ">=10" "node": ">=10"
}, },
"scripts": { "scripts": {
"build": "tsc", "build": "run-s build-ts build-css",
"build-ts": "tsc",
"build-css": "less-watch-compiler src/ dist/lib/ --run-once", "build-css": "less-watch-compiler src/ dist/lib/ --run-once",
"start": "npm-run-all --parallel watch watch-css watch-css-src", "start": "npm-run-all --parallel watch watch-css watch-css-src",
"watch-css": "less-watch-compiler src/ dist/lib/", "watch-css": "less-watch-compiler src/ dist/lib/",

View File

@ -579,7 +579,7 @@ const processMetaplexAccounts = async (
// Could have any kind of pictures in it. // Could have any kind of pictures in it.
if ( if (
auctionManager.state.status !== AuctionManagerStatus.Initialized || auctionManager.state.status !== AuctionManagerStatus.Initialized ||
auctionManager.state.status === AuctionManagerStatus.Initialized) auctionManager.state.status === AuctionManagerStatus.Initialized
) { ) {
const account: ParsedAccount<AuctionManager> = { const account: ParsedAccount<AuctionManager> = {
pubkey: a.pubkey, pubkey: a.pubkey,