Skip to content

Commit bb905f7

Browse files
AllanZhengYPsrchase
authored andcommitted
feat: commit all clients (#324)
* chore: fix issues with */ in doc block breaking code gen * chore: remove importexport service because of deprecation * fix(service-types-generator): fix self reference in generated model * fix(service-model): code gen of different models with casing difference * fix: remove universal client generation when import models Currently generated clients' config doesn't compatible with either browser dependency or node dependency because the default streamType is 'Uint8Array', which is not compatible with `Blob` or `Readable` * fix(service-types-generator): remove versions from cloudfront commands * fix: fix incorrect codegen in commands signing middleware * fix: fix naming conflict between operations and shapes * feat: introduce typescript incremental build * chore: add travis wait time for long-running steps
1 parent 3ad17ba commit bb905f7

File tree

96 files changed

+211
-75
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

96 files changed

+211
-75
lines changed

packages/abort-controller/.gitignore

+6
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,8 @@
11
/node_modules/
22
/build/
3+
/coverage/
4+
/docs/
5+
*.tsbuildinfo
6+
*.tgz
7+
*.log
8+
package-lock.json

packages/abort-controller/.npmignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
/src/
22
/coverage/
33
tsconfig.test.json
4+
*.tsbuildinfo
45

56
*.spec.js
67
*.spec.d.ts

packages/abort-controller/tsconfig.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
"rootDir": "./src",
1111
"outDir": "./build",
1212
"importHelpers": true,
13-
"noEmitHelpers": true
13+
"noEmitHelpers": true,
14+
"incremental": true
1415
}
1516
}

packages/abort-controller/tsconfig.test.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
"inlineSourceMap": true,
66
"inlineSources": true,
77
"rootDir": "./src",
8-
"outDir": "./build"
8+
"outDir": "./build",
9+
"incremental": true
910
}
1011
}

packages/chunked-blob-reader/.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
/build/
33
/coverage/
44
/docs/
5+
*.tsbuildinfo
56
*.tgz
67
*.log
7-
package-lock.json
8+
package-lock.json

packages/chunked-blob-reader/.npmignore

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
/coverage/
33
/docs/
44
tsconfig.test.json
5+
*.tsbuildinfo
56

67
*.spec.js
78
*.spec.d.ts

packages/chunked-blob-reader/tsconfig.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
"es2015.symbol.wellknown"
1818
],
1919
"rootDir": "./src",
20-
"outDir": "./build"
20+
"outDir": "./build",
21+
"incremental": true
2122
}
2223
}

packages/chunked-blob-reader/tsconfig.test.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
"inlineSourceMap": true,
66
"inlineSources": true,
77
"rootDir": "./src",
8-
"outDir": "./build"
8+
"outDir": "./build",
9+
"incremental": true
910
}
1011
}

packages/config-resolver/.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
/build/
33
/coverage/
44
/docs/
5+
*.tsbuildinfo
56
*.tgz
67
*.log
7-
package-lock.json
8+
package-lock.json

packages/config-resolver/.npmignore

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
/coverage/
33
/docs/
44
tsconfig.test.json
5+
*.tsbuildinfo
56

67
*.spec.js
78
*.spec.d.ts

packages/config-resolver/tsconfig.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
"rootDir": "./src",
1717
"outDir": "./build",
1818
"importHelpers": true,
19-
"noEmitHelpers": true
19+
"noEmitHelpers": true,
20+
"incremental": true
2021
}
2122
}

packages/config-resolver/tsconfig.test.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
"inlineSourceMap": true,
66
"inlineSources": true,
77
"rootDir": "./src",
8-
"outDir": "./build"
8+
"outDir": "./build",
9+
"incremental": true
910
}
1011
}
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,8 @@
11
/node_modules/
22
/build/
3+
/coverage/
4+
/docs/
5+
*.tsbuildinfo
6+
*.tgz
7+
*.log
8+
package-lock.json

packages/credential-provider-imds/.npmignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
/src/
22
/coverage/
33
tsconfig.test.json
4+
*.tsbuildinfo
45

56
*.spec.js
67
*.spec.d.ts

packages/credential-provider-imds/tsconfig.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
"lib": ["es5", "es2015.promise", "es2015.collection"],
1010
"sourceRoot": "./src",
1111
"outDir": "./build",
12-
"noEmitHelpers": true
12+
"noEmitHelpers": true,
13+
"incremental": true
1314
}
1415
}

packages/credential-provider-imds/tsconfig.test.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
"inlineSourceMap": true,
66
"inlineSources": true,
77
"sourceRoot": "./src",
8-
"outDir": "./build"
8+
"outDir": "./build",
9+
"incremental": true
910
}
1011
}
+8-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
1-
*.js
2-
*.js.map
3-
*.d.ts
4-
5-
!jest.config.js
1+
/node_modules/
2+
/build/
3+
/coverage/
4+
/docs/
5+
*.tsbuildinfo
6+
*.tgz
7+
*.log
8+
package-lock.json

packages/fetch-http-handler/.npmignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
/src/
22
/coverage/
33
tsconfig.test.json
4+
*.tsbuildinfo
45

56
*.spec.js
67
*.spec.d.ts

packages/fetch-http-handler/tsconfig.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
"noEmitHelpers": true,
1111
"lib": ["dom", "es5", "es2015.promise", "es2015.iterable"],
1212
"rootDir": "./src",
13-
"outDir": "./build"
13+
"outDir": "./build",
14+
"incremental": true
1415
}
1516
}

packages/fetch-http-handler/tsconfig.test.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
"inlineSourceMap": true,
66
"inlineSources": true,
77
"rootDir": "./src",
8-
"outDir": "./build"
8+
"outDir": "./build",
9+
"incremental": true
910
}
1011
}

packages/hash-blob-browser/.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
/build/
33
/coverage/
44
/docs/
5+
*.tsbuildinfo
56
*.tgz
67
*.log
7-
package-lock.json
8+
package-lock.json

packages/hash-blob-browser/.npmignore

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
/coverage/
33
/docs/
44
tsconfig.test.json
5+
*.tsbuildinfo
56

67
*.spec.js
78
*.spec.d.ts

packages/hash-blob-browser/tsconfig.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
"es2015.symbol.wellknown"
1818
],
1919
"rootDir": "./src",
20-
"outDir": "./build"
20+
"outDir": "./build",
21+
"incremental": true
2122
}
2223
}

packages/hash-blob-browser/tsconfig.test.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
"inlineSourceMap": true,
66
"inlineSources": true,
77
"rootDir": "./src",
8-
"outDir": "./build"
8+
"outDir": "./build",
9+
"incremental": true
910
}
1011
}

packages/hash-node/.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
/build/
33
/coverage/
44
/docs/
5+
*.tsbuildinfo
56
*.tgz
67
*.log
7-
package-lock.json
8+
package-lock.json

packages/hash-node/.npmignore

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
/coverage/
33
/docs/
44
tsconfig.test.json
5+
*.tsbuildinfo
56

67
*.spec.js
78
*.spec.d.ts

packages/hash-node/tsconfig.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
"es2015.symbol.wellknown"
1717
],
1818
"rootDir": "./src",
19-
"outDir": "./build"
19+
"outDir": "./build",
20+
"incremental": true
2021
}
2122
}

packages/hash-node/tsconfig.test.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
"inlineSourceMap": true,
66
"inlineSources": true,
77
"rootDir": "./src",
8-
"outDir": "./build"
8+
"outDir": "./build",
9+
"incremental": true
910
}
1011
}

packages/hash-stream-node/.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
/build/
33
/coverage/
44
/docs/
5+
*.tsbuildinfo
56
*.tgz
67
*.log
7-
package-lock.json
8+
package-lock.json

packages/hash-stream-node/.npmignore

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
/coverage/
33
/docs/
44
tsconfig.test.json
5+
*.tsbuildinfo
56

67
*.spec.js
78
*.spec.d.ts

packages/hash-stream-node/tsconfig.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
"es2015.symbol.wellknown"
1717
],
1818
"rootDir": "./src",
19-
"outDir": "./build"
19+
"outDir": "./build",
20+
"incremental": true
2021
}
2122
}

packages/hash-stream-node/tsconfig.test.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
"inlineSourceMap": true,
66
"inlineSources": true,
77
"rootDir": "./src",
8-
"outDir": "./build"
8+
"outDir": "./build",
9+
"incremental": true
910
}
1011
}

packages/is-array-buffer/.gitignore

+6
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,8 @@
11
/node_modules/
22
/build/
3+
/coverage/
4+
/docs/
5+
*.tsbuildinfo
6+
*.tgz
7+
*.log
8+
package-lock.json

packages/is-array-buffer/.npmignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
/src/
22
/coverage/
33
tsconfig.test.json
4+
*.tsbuildinfo
45

56
*.spec.js
67
*.spec.d.ts

packages/is-array-buffer/tsconfig.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
"sourceRoot": "./src",
1010
"outDir": "./build",
1111
"importHelpers": true,
12-
"noEmitHelpers": true
12+
"noEmitHelpers": true,
13+
"incremental": true
1314
}
1415
}

packages/is-array-buffer/tsconfig.test.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
"inlineSourceMap": true,
66
"inlineSources": true,
77
"sourceRoot": "./src",
8-
"outDir": "./build"
8+
"outDir": "./build",
9+
"incremental": true
910
}
1011
}

packages/md5-js/.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
/build/
33
/coverage/
44
/docs/
5+
*.tsbuildinfo
56
*.tgz
67
*.log
7-
package-lock.json
8+
package-lock.json

packages/md5-js/.npmignore

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
/coverage/
33
/docs/
44
tsconfig.test.json
5+
*.tsbuildinfo
56

67
*.spec.js
78
*.spec.d.ts

packages/md5-js/tsconfig.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616
"es2015.symbol.wellknown"
1717
],
1818
"rootDir": "./src",
19-
"outDir": "./build"
19+
"outDir": "./build",
20+
"incremental": true
2021
},
2122
"exclude": ["./src/**/*.spec.ts", "./build/**"],
2223
"include": ["./src/**/*.ts"]

packages/md5-js/tsconfig.test.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
"inlineSourceMap": true,
66
"inlineSources": true,
77
"rootDir": "./src",
8-
"outDir": "./build"
8+
"outDir": "./build",
9+
"incremental": true
910
},
1011
"exclude": ["./build/**"]
1112
}

packages/middleware-content-length/.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
/build/
33
/coverage/
44
/docs/
5+
*.tsbuildinfo
56
*.tgz
67
*.log
7-
package-lock.json
8+
package-lock.json

packages/middleware-content-length/.npmignore

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
/coverage/
33
/docs/
44
tsconfig.test.json
5+
*.tsbuildinfo
56

67
*.spec.js
78
*.spec.d.ts

packages/middleware-content-length/tsconfig.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
"rootDir": "./src",
1717
"outDir": "./build",
1818
"importHelpers": true,
19-
"noEmitHelpers": true
19+
"noEmitHelpers": true,
20+
"incremental": true
2021
}
2122
}

packages/middleware-content-length/tsconfig.test.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
"inlineSourceMap": true,
66
"inlineSources": true,
77
"rootDir": "./src",
8-
"outDir": "./build"
8+
"outDir": "./build",
9+
"incremental": true
910
}
1011
}

0 commit comments

Comments
 (0)