Skip to content
This repository has been archived by the owner on Feb 12, 2022. It is now read-only.

Update build command to explictly invoke yarn build #1990

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion scripts/publish-gh-pages.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ DEST_CLONE_DIR="$TMP_DIR/gh-pages"
SCRIPT_NAME=`basename "$0"`
COMMIT_MESSAGE="Website published using $SCRIPT_NAME"

BUILD_COMMAND="yarn install && mv prepack.min.js $SRC_DIR/js/"
BUILD_COMMAND="yarn install && yarn build && mv prepack.min.js $SRC_DIR/js/"

# Utils
RED='\033[0;31m'
Expand Down