Skip to content

Commit bac66fa

Browse files
authored
chore: fix workspace clean and generate client scripts (#2126)
* chore: update workspace clean script * chore: overwrite generated waiters in clients
1 parent 5526743 commit bac66fa

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Diff for: package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
"generate-clients": "node ./scripts/generate-clients",
1010
"bootstrap": "yarn",
1111
"clean": "yarn clear-build-cache && yarn clear-build-info && lerna clean",
12-
"clear-build-cache": "rimraf ./packages/*/build ./packages/*/build-es ./clients/*/dist",
13-
"clear-build-info": "rimraf ./packages/*/*.tsbuildinfo ./clients/*/*/*.tsbuildinfo",
12+
"clear-build-cache": "rimraf ./packages/*/dist ./clients/*/dist ./lib/*/dist ./packages/*/types ./clients/*/types ./lib/*/types",
13+
"clear-build-info": "rimraf ./packages/**/*.tsbuildinfo ./clients/**/*.tsbuildinfo ./lib/**/*.tsbuildinfo",
1414
"remove-documentation": "rimraf ./docs",
1515
"build:crypto-dependencies": "lerna run --scope '@aws-sdk/{types,util-utf8-browser,util-locate-window,hash-node}' --include-dependencies pretest",
1616
"build:protocols": "yarn build:crypto-dependencies && lerna run --scope '@aws-sdk/aws-*' --include-dependencies pretest",

Diff for: scripts/generate-clients/copy-to-clients.js

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ const getOverwritablePredicate = (packageName) => (pathName) => {
1010
"protocols",
1111
"pagination",
1212
"tests",
13+
"waiters",
1314
"LICENCE",
1415
"runtimeConfig.ts",
1516
"runtimeConfig.browser.ts",

0 commit comments

Comments
 (0)