-
Notifications
You must be signed in to change notification settings - Fork 593
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(scripts): fix single-client generation (#4344)
- Loading branch information
Showing
13 changed files
with
1,209 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# This is the public Makefile containing some build commands. | ||
# You can implement some additional personal commands such as login and sync in Makefile.private.mk (unversioned). | ||
|
||
# fetch AWS testing credentials | ||
login: | ||
make -f Makefile.private.mk login | ||
|
||
# Sync your development fork with upstream. | ||
# Recommended contents: | ||
# gh repo sync {your_github_account_name}/aws-sdk-js-v3 -b main | ||
# git fetch --all | ||
sync: | ||
make -f Makefile.private.mk sync | ||
|
||
# Runs build for all packages using Turborepo | ||
turbo-build: | ||
(cd scripts/remote-cache && yarn) | ||
node scripts/remote-cache/ start& | ||
sleep 3 | ||
npx turbo run build --api="http://localhost:3000" --team="aws-sdk-js" --token="xyz" | ||
node scripts/remote-cache/ stop | ||
|
||
# Runs single-client codegen for all clients using Turborepo | ||
turbo-generate-clients: | ||
(cd scripts/remote-cache && yarn) | ||
node scripts/remote-cache/ start& | ||
sleep 3 | ||
npx turbo run generate:client --filter=@aws-sdk/client-* --api="http://localhost:3000" --team="aws-sdk-js" --token="xyz" | ||
node scripts/remote-cache/ stop | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
tmp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.