Skip to content

Commit 2d14c8b

Browse files
authored
chore(non-clients): transpile to dist-* folders (#2852)
1 parent 94d0a2d commit 2d14c8b

File tree

392 files changed

+879
-879
lines changed

Some content is hidden

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

392 files changed

+879
-879
lines changed

lib/lib-dynamodb/package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
"name": "@aws-sdk/lib-dynamodb",
33
"version": "3.34.0",
44
"description": "The document client simplifies working with items in Amazon DynamoDB by abstracting away the notion of attribute values.",
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
"engines": {
@@ -41,8 +41,8 @@
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
},

lib/lib-dynamodb/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",

lib/lib-dynamodb/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", "dom"],
5-
"outDir": "dist/es",
5+
"outDir": "dist-es",
66
"rootDir": "src"
77
},
88
"extends": "../../tsconfig.es.json",

lib/lib-dynamodb/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",

lib/lib-storage/package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
"name": "@aws-sdk/lib-storage",
33
"version": "3.34.0",
44
"description": "Storage higher order operation",
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
"engines": {
@@ -48,8 +48,8 @@
4848
},
4949
"typesVersions": {
5050
"<4.0": {
51-
"dist/types/*": [
52-
"dist/types/ts3.4/*"
51+
"dist-types/*": [
52+
"dist-types/ts3.4/*"
5353
]
5454
}
5555
},

lib/lib-storage/tsconfig.cjs.json

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

lib/lib-storage/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", "dom"],
5-
"outDir": "dist/es",
5+
"outDir": "dist-es",
66
"rootDir": "src"
77
},
88
"extends": "../../tsconfig.es.json",

lib/lib-storage/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/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/body-checksum-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/"
@@ -34,8 +34,8 @@
3434
},
3535
"typesVersions": {
3636
"<4.0": {
37-
"dist/types/*": [
38-
"dist/types/ts3.4/*"
37+
"dist-types/*": [
38+
"dist-types/ts3.4/*"
3939
]
4040
}
4141
},

packages/body-checksum-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/body-checksum-browser/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/body-checksum-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/body-checksum-node/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/"
@@ -38,8 +38,8 @@
3838
},
3939
"typesVersions": {
4040
"<4.0": {
41-
"dist/types/*": [
42-
"dist/types/ts3.4/*"
41+
"dist-types/*": [
42+
"dist-types/ts3.4/*"
4343
]
4444
}
4545
},

packages/body-checksum-node/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/body-checksum-node/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/body-checksum-node/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",

0 commit comments

Comments
 (0)