Skip to content

Commit

Permalink
Remove example from the build & change deps to match release
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Neilson committed Aug 28, 2020
1 parent ce95602 commit 502b743
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,6 @@ rm -rf $BUILD_INDICATOR

echo "============================================================================================="
echo "building..."
time lerna run $bail --stream $runtarget || fail
time lerna run $bail --stream $runtarget --ignore 'all-in-farm**' || fail

touch $BUILD_INDICATOR
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
packages=setuptools.find_packages(where="package"),

install_requires=[
"aws-cdk.core==1.61.1",
"aws-cdk.core==1.57.0",
"aws-rfdk==0.17.0"
],

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"typescript": "~3.9.7"
},
"dependencies": {
"@aws-cdk/core": "1.61.1",
"@aws-cdk/core": "1.57.0",
"aws-rfdk": "0.17.0",
"source-map-support": "^0.5.19"
}
Expand Down
2 changes: 1 addition & 1 deletion scripts/generate-aggregate-tsconfig.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ echo ' "references": ['
# if we have more than one package,
# we set $comma to an actual comma
comma=' '
for package in $(node_modules/.bin/lerna ls -ap); do
for package in $(node_modules/.bin/lerna ls -ap --ignore 'all-in-farm**'); do
relpath=${package#"$prefix"}
echo ' '"$comma"'{ "path": "'"$relpath"'" }'
comma=', '
Expand Down

0 comments on commit 502b743

Please sign in to comment.