Skip to content

Commit 598705c

Browse files
authored
Install optional dependencies in stage and prod (#692)
1 parent 6d93655 commit 598705c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

scripts/push-to-s3-prod.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ export ALGOLIA_API_KEY="49a495ba4c210780a28feed306d05522" # This is a search onl
1111

1212
export CONFIG_POSTHOG_API_KEY="phc_zJYg43ctbPl1BzsnODjop1op9KSsctiGm6DNNt3zHZT"
1313

14-
yarn --ignore-optional && yarn build
14+
yarn && yarn build
1515

1616
aws s3 sync build/ s3://docs.gruntwork.io --delete # Delete option ensures deleted files get removed from the bucket

scripts/push-to-s3-stage.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ export CONFIG_GOOGLE_ANALYTICS_TRACKING_ID="UA-154792164-2"
99
export ALGOLIA_INDEX_NAME="docs_site_stage"
1010
export ALGOLIA_API_KEY="8487ee2b8a8d59dfd7597854d562a38b" # This is a search only key. It is safe to check in.
1111

12-
yarn --ignore-optional && yarn build
12+
yarn && yarn build
1313

1414
aws s3 sync build/ s3://docs.dogfood-stage.com --delete # Delete option ensures deleted files get removed from the bucket

0 commit comments

Comments
 (0)