Skip to content

Commit ffb8811

Browse files
trivikrsrchase
authored andcommitted
chore(non-clients): transpile to dist-* folders (#2852)
1 parent e7dfd41 commit ffb8811

File tree

144 files changed

+324
-324
lines changed

Some content is hidden

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

144 files changed

+324
-324
lines changed

packages/abort-controller/package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
"name": "@aws-sdk/abort-controller",
33
"version": "3.34.0",
44
"description": "A simple abort controller library",
5-
"main": "./dist/cjs/index.js",
6-
"module": "./dist/es/index.js",
7-
"types": "./dist/types/index.d.ts",
5+
"main": "./dist-cjs/index.js",
6+
"module": "./dist-es/index.js",
7+
"types": "./dist-types/index.d.ts",
88
"scripts": {
99
"build": "yarn build:cjs && yarn build:es && yarn build:types",
1010
"build:cjs": "tsc -p tsconfig.cjs.json",
1111
"build:es": "tsc -p tsconfig.es.json",
1212
"build:types": "tsc -p tsconfig.types.json",
13-
"downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4",
13+
"downlevel-dts": "downlevel-dts dist-types dist-types/ts3.4",
1414
"test": "jest"
1515
},
1616
"author": {
@@ -32,8 +32,8 @@
3232
},
3333
"typesVersions": {
3434
"<4.0": {
35-
"dist/types/*": [
36-
"dist/types/ts3.4/*"
35+
"dist-types/*": [
36+
"dist-types/ts3.4/*"
3737
]
3838
}
3939
},

packages/abort-controller/tsconfig.cjs.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"compilerOptions": {
33
"baseUrl": ".",
4-
"outDir": "dist/cjs",
4+
"outDir": "dist-cjs",
55
"rootDir": "src",
66
"stripInternal": true
77
},

packages/abort-controller/tsconfig.es.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"compilerOptions": {
33
"baseUrl": ".",
44
"lib": ["es5", "es2015.collection"],
5-
"outDir": "dist/es",
5+
"outDir": "dist-es",
66
"rootDir": "src",
77
"stripInternal": true
88
},

packages/abort-controller/tsconfig.types.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"compilerOptions": {
33
"baseUrl": ".",
4-
"declarationDir": "dist/types",
4+
"declarationDir": "dist-types",
55
"rootDir": "src"
66
},
77
"extends": "../../tsconfig.types.json",

packages/chunked-blob-reader-native/package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66
"build:cjs": "tsc -p tsconfig.cjs.json",
77
"build:es": "tsc -p tsconfig.es.json",
88
"build:types": "tsc -p tsconfig.types.json",
9-
"downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4",
9+
"downlevel-dts": "downlevel-dts dist-types dist-types/ts3.4",
1010
"test": "jest"
1111
},
12-
"main": "./dist/cjs/index.js",
13-
"module": "./dist/es/index.js",
14-
"types": "./dist/types/index.d.ts",
12+
"main": "./dist-cjs/index.js",
13+
"module": "./dist-es/index.js",
14+
"types": "./dist-types/index.d.ts",
1515
"author": {
1616
"name": "AWS SDK for JavaScript Team",
1717
"url": "https://aws.amazon.com/javascript/"
@@ -28,8 +28,8 @@
2828
},
2929
"typesVersions": {
3030
"<4.0": {
31-
"dist/types/*": [
32-
"dist/types/ts3.4/*"
31+
"dist-types/*": [
32+
"dist-types/ts3.4/*"
3333
]
3434
}
3535
},

packages/chunked-blob-reader-native/tsconfig.cjs.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"compilerOptions": {
33
"baseUrl": ".",
4-
"outDir": "dist/cjs",
4+
"outDir": "dist-cjs",
55
"rootDir": "src"
66
},
77
"extends": "../../tsconfig.cjs.json",

packages/chunked-blob-reader-native/tsconfig.es.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"compilerOptions": {
33
"baseUrl": ".",
44
"lib": ["dom", "es5", "es2015.promise", "es2015.collection", "es2015.iterable", "es2015.symbol.wellknown"],
5-
"outDir": "dist/es",
5+
"outDir": "dist-es",
66
"rootDir": "src"
77
},
88
"extends": "../../tsconfig.es.json",

packages/chunked-blob-reader-native/tsconfig.types.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"compilerOptions": {
33
"baseUrl": ".",
4-
"declarationDir": "dist/types",
4+
"declarationDir": "dist-types",
55
"rootDir": "src"
66
},
77
"extends": "../../tsconfig.types.json",

packages/chunked-blob-reader/package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66
"build:cjs": "tsc -p tsconfig.cjs.json",
77
"build:es": "tsc -p tsconfig.es.json",
88
"build:types": "tsc -p tsconfig.types.json",
9-
"downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4",
9+
"downlevel-dts": "downlevel-dts dist-types dist-types/ts3.4",
1010
"test": "jest"
1111
},
12-
"main": "./dist/cjs/index.js",
13-
"module": "./dist/es/index.js",
14-
"types": "./dist/types/index.d.ts",
12+
"main": "./dist-cjs/index.js",
13+
"module": "./dist-es/index.js",
14+
"types": "./dist-types/index.d.ts",
1515
"author": {
1616
"name": "AWS SDK for JavaScript Team",
1717
"url": "https://aws.amazon.com/javascript/"
@@ -27,8 +27,8 @@
2727
},
2828
"typesVersions": {
2929
"<4.0": {
30-
"dist/types/*": [
31-
"dist/types/ts3.4/*"
30+
"dist-types/*": [
31+
"dist-types/ts3.4/*"
3232
]
3333
}
3434
},

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"compilerOptions": {
33
"baseUrl": ".",
4-
"outDir": "dist/cjs",
4+
"outDir": "dist-cjs",
55
"rootDir": "src"
66
},
77
"extends": "../../tsconfig.cjs.json",

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"compilerOptions": {
33
"baseUrl": ".",
44
"lib": ["dom", "es5", "es2015.promise", "es2015.collection", "es2015.iterable", "es2015.symbol.wellknown"],
5-
"outDir": "dist/es",
5+
"outDir": "dist-es",
66
"rootDir": "src"
77
},
88
"extends": "../../tsconfig.es.json",

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"compilerOptions": {
33
"baseUrl": ".",
4-
"declarationDir": "dist/types",
4+
"declarationDir": "dist-types",
55
"rootDir": "src"
66
},
77
"extends": "../../tsconfig.types.json",

packages/config-resolver/package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66
"build:cjs": "tsc -p tsconfig.cjs.json",
77
"build:es": "tsc -p tsconfig.es.json",
88
"build:types": "tsc -p tsconfig.types.json",
9-
"downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4",
9+
"downlevel-dts": "downlevel-dts dist-types dist-types/ts3.4",
1010
"test": "jest"
1111
},
12-
"main": "./dist/cjs/index.js",
13-
"module": "./dist/es/index.js",
14-
"types": "./dist/types/index.d.ts",
12+
"main": "./dist-cjs/index.js",
13+
"module": "./dist-es/index.js",
14+
"types": "./dist-types/index.d.ts",
1515
"author": {
1616
"name": "AWS SDK for JavaScript Team",
1717
"url": "https://aws.amazon.com/javascript/"
@@ -33,8 +33,8 @@
3333
},
3434
"typesVersions": {
3535
"<4.0": {
36-
"dist/types/*": [
37-
"dist/types/ts3.4/*"
36+
"dist-types/*": [
37+
"dist-types/ts3.4/*"
3838
]
3939
}
4040
},

packages/config-resolver/tsconfig.cjs.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"compilerOptions": {
33
"baseUrl": ".",
4-
"outDir": "dist/cjs",
4+
"outDir": "dist-cjs",
55
"rootDir": "src"
66
},
77
"extends": "../../tsconfig.cjs.json",

packages/config-resolver/tsconfig.es.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"compilerOptions": {
33
"baseUrl": ".",
44
"lib": ["es5", "es2015.promise", "es2015.collection", "es2015.iterable", "es2015.symbol.wellknown"],
5-
"outDir": "dist/es",
5+
"outDir": "dist-es",
66
"rootDir": "src"
77
},
88
"extends": "../../tsconfig.es.json",

packages/config-resolver/tsconfig.types.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"compilerOptions": {
33
"baseUrl": ".",
4-
"declarationDir": "dist/types",
4+
"declarationDir": "dist-types",
55
"rootDir": "src"
66
},
77
"extends": "../../tsconfig.types.json",

packages/credential-provider-imds/package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
"name": "@aws-sdk/credential-provider-imds",
33
"version": "3.34.0",
44
"description": "AWS credential provider that sources credentials from the EC2 instance metadata service and ECS container metadata service",
5-
"main": "./dist/cjs/index.js",
6-
"module": "./dist/es/index.js",
5+
"main": "./dist-cjs/index.js",
6+
"module": "./dist-es/index.js",
77
"scripts": {
88
"build": "yarn build:cjs && yarn build:es && yarn build:types",
99
"build:cjs": "tsc -p tsconfig.cjs.json",
1010
"build:es": "tsc -p tsconfig.es.json",
1111
"build:types": "tsc -p tsconfig.types.json",
12-
"downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4",
12+
"downlevel-dts": "downlevel-dts dist-types dist-types/ts3.4",
1313
"test": "jest"
1414
},
1515
"keywords": [
@@ -35,14 +35,14 @@
3535
"nock": "^13.0.2",
3636
"typescript": "~4.3.5"
3737
},
38-
"types": "./dist/types/index.d.ts",
38+
"types": "./dist-types/index.d.ts",
3939
"engines": {
4040
"node": ">= 10.0.0"
4141
},
4242
"typesVersions": {
4343
"<4.0": {
44-
"dist/types/*": [
45-
"dist/types/ts3.4/*"
44+
"dist-types/*": [
45+
"dist-types/ts3.4/*"
4646
]
4747
}
4848
},

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"compilerOptions": {
33
"baseUrl": ".",
4-
"outDir": "dist/cjs",
4+
"outDir": "dist-cjs",
55
"rootDir": "src"
66
},
77
"extends": "../../tsconfig.cjs.json",

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"compilerOptions": {
33
"baseUrl": ".",
44
"lib": ["es5", "es2015.promise", "es2015.collection"],
5-
"outDir": "dist/es",
5+
"outDir": "dist-es",
66
"rootDir": "src"
77
},
88
"extends": "../../tsconfig.es.json",

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"compilerOptions": {
33
"baseUrl": ".",
4-
"declarationDir": "dist/types",
4+
"declarationDir": "dist-types",
55
"rootDir": "src"
66
},
77
"extends": "../../tsconfig.types.json",

packages/eventstream-serde-browser/package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66
"build:cjs": "tsc -p tsconfig.cjs.json",
77
"build:es": "tsc -p tsconfig.es.json",
88
"build:types": "tsc -p tsconfig.types.json",
9-
"downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4",
9+
"downlevel-dts": "downlevel-dts dist-types dist-types/ts3.4",
1010
"test": "jest"
1111
},
12-
"main": "./dist/cjs/index.js",
13-
"module": "./dist/es/index.js",
14-
"types": "./dist/types/index.d.ts",
12+
"main": "./dist-cjs/index.js",
13+
"module": "./dist-es/index.js",
14+
"types": "./dist-types/index.d.ts",
1515
"author": {
1616
"name": "AWS SDK for JavaScript Team",
1717
"url": "https://aws.amazon.com/javascript/"
@@ -33,8 +33,8 @@
3333
},
3434
"typesVersions": {
3535
"<4.0": {
36-
"dist/types/*": [
37-
"dist/types/ts3.4/*"
36+
"dist-types/*": [
37+
"dist-types/ts3.4/*"
3838
]
3939
}
4040
},

packages/eventstream-serde-browser/tsconfig.cjs.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"compilerOptions": {
33
"baseUrl": ".",
4-
"outDir": "dist/cjs",
4+
"outDir": "dist-cjs",
55
"rootDir": "src"
66
},
77
"extends": "../../tsconfig.cjs.json",

packages/eventstream-serde-browser/tsconfig.es.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"compilerOptions": {
33
"baseUrl": ".",
44
"lib": ["es2018.asynciterable", "DOM"],
5-
"outDir": "dist/es",
5+
"outDir": "dist-es",
66
"rootDir": "src"
77
},
88
"extends": "../../tsconfig.es.json",

packages/eventstream-serde-browser/tsconfig.types.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"compilerOptions": {
33
"baseUrl": ".",
4-
"declarationDir": "dist/types",
4+
"declarationDir": "dist-types",
55
"rootDir": "src"
66
},
77
"extends": "../../tsconfig.types.json",

packages/eventstream-serde-config-resolver/package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66
"build:cjs": "tsc -p tsconfig.cjs.json",
77
"build:es": "tsc -p tsconfig.es.json",
88
"build:types": "tsc -p tsconfig.types.json",
9-
"downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4",
9+
"downlevel-dts": "downlevel-dts dist-types dist-types/ts3.4",
1010
"test": "jest"
1111
},
12-
"main": "./dist/cjs/index.js",
13-
"module": "./dist/es/index.js",
14-
"types": "./dist/types/index.d.ts",
12+
"main": "./dist-cjs/index.js",
13+
"module": "./dist-es/index.js",
14+
"types": "./dist-types/index.d.ts",
1515
"author": {
1616
"name": "AWS SDK for JavaScript Team",
1717
"url": "https://aws.amazon.com/javascript/"
@@ -31,8 +31,8 @@
3131
},
3232
"typesVersions": {
3333
"<4.0": {
34-
"dist/types/*": [
35-
"dist/types/ts3.4/*"
34+
"dist-types/*": [
35+
"dist-types/ts3.4/*"
3636
]
3737
}
3838
},

packages/eventstream-serde-config-resolver/tsconfig.cjs.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"compilerOptions": {
33
"baseUrl": ".",
4-
"outDir": "dist/cjs",
4+
"outDir": "dist-cjs",
55
"rootDir": "src"
66
},
77
"extends": "../../tsconfig.cjs.json",

packages/eventstream-serde-config-resolver/tsconfig.es.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"compilerOptions": {
33
"baseUrl": ".",
44
"lib": ["es2018.asynciterable"],
5-
"outDir": "dist/es",
5+
"outDir": "dist-es",
66
"rootDir": "src"
77
},
88
"extends": "../../tsconfig.es.json",

packages/eventstream-serde-config-resolver/tsconfig.types.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"compilerOptions": {
33
"baseUrl": ".",
4-
"declarationDir": "dist/types",
4+
"declarationDir": "dist-types",
55
"rootDir": "src"
66
},
77
"extends": "../../tsconfig.types.json",

0 commit comments

Comments
 (0)