Skip to content

Commit 0142e6b

Browse files
authored
chore: prefix aws-protocoltests- for protocol test clients (#2942)
1 parent 538d717 commit 0142e6b

File tree

338 files changed

+346
-366
lines changed

Some content is hidden

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

338 files changed

+346
-366
lines changed

codegen/protocol-test-codegen/smithy-build.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"version": "1.0",
33
"projections": {
4-
"aws-ec2": {
4+
"aws-protocoltests-ec2": {
55
"transforms": [
66
{
77
"name": "includeServices",
@@ -12,7 +12,7 @@
1212
],
1313
"plugins": {
1414
"typescript-codegen": {
15-
"package": "@aws-sdk/aws-ec2",
15+
"package": "@aws-sdk/aws-protocoltests-ec2",
1616
"packageVersion": "1.0.0-alpha.1",
1717
"packageJson": {
1818
"author": {
@@ -25,7 +25,7 @@
2525
}
2626
}
2727
},
28-
"aws-json": {
28+
"aws-protocoltests-json": {
2929
"transforms": [
3030
{
3131
"name": "includeServices",
@@ -36,7 +36,7 @@
3636
],
3737
"plugins": {
3838
"typescript-codegen": {
39-
"package": "@aws-sdk/aws-json",
39+
"package": "@aws-sdk/aws-protocoltests-json",
4040
"packageVersion": "1.0.0-alpha.1",
4141
"packageJson": {
4242
"author": {
@@ -49,7 +49,7 @@
4949
}
5050
}
5151
},
52-
"aws-json-10": {
52+
"aws-protocoltests-json-10": {
5353
"transforms": [
5454
{
5555
"name": "includeServices",
@@ -60,7 +60,7 @@
6060
],
6161
"plugins": {
6262
"typescript-codegen": {
63-
"package": "@aws-sdk/aws-json-10",
63+
"package": "@aws-sdk/aws-protocoltests-json-10",
6464
"packageVersion": "1.0.0-alpha.1",
6565
"packageJson": {
6666
"author": {
@@ -73,7 +73,7 @@
7373
}
7474
}
7575
},
76-
"aws-query": {
76+
"aws-protocoltests-query": {
7777
"transforms": [
7878
{
7979
"name": "includeServices",
@@ -84,7 +84,7 @@
8484
],
8585
"plugins": {
8686
"typescript-codegen": {
87-
"package": "@aws-sdk/aws-query",
87+
"package": "@aws-sdk/aws-protocoltests-query",
8888
"packageVersion": "1.0.0-alpha.1",
8989
"packageJson": {
9090
"author": {
@@ -97,7 +97,7 @@
9797
}
9898
}
9999
},
100-
"aws-restjson": {
100+
"aws-protocoltests-restjson": {
101101
"transforms": [
102102
{
103103
"name": "includeServices",
@@ -108,7 +108,7 @@
108108
],
109109
"plugins": {
110110
"typescript-codegen": {
111-
"package": "@aws-sdk/aws-restjson",
111+
"package": "@aws-sdk/aws-protocoltests-restjson",
112112
"packageVersion": "1.0.0-alpha.1",
113113
"packageJson": {
114114
"author": {
@@ -142,7 +142,7 @@
142142
}
143143
}
144144
},
145-
"aws-restxml": {
145+
"aws-protocoltests-restxml": {
146146
"transforms": [
147147
{
148148
"name": "includeServices",
@@ -153,7 +153,7 @@
153153
],
154154
"plugins": {
155155
"typescript-codegen": {
156-
"package": "@aws-sdk/aws-restxml",
156+
"package": "@aws-sdk/aws-protocoltests-restxml",
157157
"packageVersion": "1.0.0-alpha.1",
158158
"packageJson": {
159159
"author": {

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"clear-build-info": "rimraf ./packages/**/*.tsbuildinfo ./clients/**/*.tsbuildinfo ./lib/**/*.tsbuildinfo ./protocol_tests/**/*.tsbuildinfo",
1515
"remove-documentation": "rimraf ./docs",
1616
"build:crypto-dependencies": "lerna run --scope '@aws-sdk/{types,util-utf8-browser,util-locate-window,hash-node}' --include-dependencies build",
17-
"build:protocols": "yarn build:crypto-dependencies && lerna run --scope '@aws-sdk/aws-*' --ignore '@aws-sdk/*-server' --include-dependencies build",
17+
"build:protocols": "yarn build:crypto-dependencies && lerna run --scope '@aws-sdk/aws-protocoltests-*' --include-dependencies build",
1818
"build:server-protocols": "yarn build:crypto-dependencies && lerna run --scope '@aws-sdk/*-server' --include-dependencies build",
1919
"build:all": "yarn build:crypto-dependencies && lerna run build",
2020
"build-documentation": "yarn remove-documentation && typedoc",
@@ -24,7 +24,7 @@
2424
"test:integration:legacy": "cucumber-js --fail-fast",
2525
"test:integration:legacy:since:release": "./tests/integ-legacy/index.js",
2626
"test:integration": "jest --config jest.config.integ.js --passWithNoTests",
27-
"test:protocols": "yarn build:protocols && lerna run test --scope '@aws-sdk/aws-*' --ignore '@aws-sdk/*-server'",
27+
"test:protocols": "yarn build:protocols && lerna run test --scope '@aws-sdk/aws-protocoltests-*'",
2828
"test:server-protocols": "yarn build:server-protocols && lerna run test --scope '@aws-sdk/*-server'",
2929
"pretest:e2e": "yarn build:crypto-dependencies && lerna run --scope '@aws-sdk/{client-cloudformation,karma-credential-loader}' --include-dependencies build",
3030
"test:e2e": "node ./tests/e2e/index.js",

protocol_tests/aws-ec2/README.md renamed to protocol_tests/aws-protocoltests-ec2/README.md

Lines changed: 11 additions & 11 deletions

protocol_tests/aws-query/package.json renamed to protocol_tests/aws-protocoltests-ec2/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "@aws-sdk/aws-query",
3-
"description": "@aws-sdk/aws-query client",
2+
"name": "@aws-sdk/aws-protocoltests-ec2",
3+
"description": "@aws-sdk/aws-protocoltests-ec2 client",
44
"version": "3.38.0",
55
"scripts": {
66
"build": "yarn build:cjs && yarn build:es && yarn build:types",
@@ -87,10 +87,10 @@
8787
"./dist-es/runtimeConfig": "./dist-es/runtimeConfig.native"
8888
},
8989
"private": true,
90-
"homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/aws-query",
90+
"homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/aws-protocoltests-ec2",
9191
"repository": {
9292
"type": "git",
9393
"url": "https://github.com/aws/aws-sdk-js-v3.git",
94-
"directory": "clients/aws-query"
94+
"directory": "clients/aws-protocoltests-ec2"
9595
}
9696
}

protocol_tests/aws-ec2/src/commands/EmptyInputAndEmptyOutputCommand.ts renamed to protocol_tests/aws-protocoltests-ec2/src/commands/EmptyInputAndEmptyOutputCommand.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ export interface EmptyInputAndEmptyOutputCommandOutput extends EmptyInputAndEmpt
2929
* @example
3030
* Use a bare-bones client and the command you need to make an API call.
3131
* ```javascript
32-
* import { EC2ProtocolClient, EmptyInputAndEmptyOutputCommand } from "@aws-sdk/aws-ec2"; // ES Modules import
33-
* // const { EC2ProtocolClient, EmptyInputAndEmptyOutputCommand } = require("@aws-sdk/aws-ec2"); // CommonJS import
32+
* import { EC2ProtocolClient, EmptyInputAndEmptyOutputCommand } from "@aws-sdk/aws-protocoltests-ec2"; // ES Modules import
33+
* // const { EC2ProtocolClient, EmptyInputAndEmptyOutputCommand } = require("@aws-sdk/aws-protocoltests-ec2"); // CommonJS import
3434
* const client = new EC2ProtocolClient(config);
3535
* const command = new EmptyInputAndEmptyOutputCommand(input);
3636
* const response = await client.send(command);

protocol_tests/aws-ec2/src/commands/GreetingWithErrorsCommand.ts renamed to protocol_tests/aws-protocoltests-ec2/src/commands/GreetingWithErrorsCommand.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ export interface GreetingWithErrorsCommandOutput extends GreetingWithErrorsOutpu
3030
* @example
3131
* Use a bare-bones client and the command you need to make an API call.
3232
* ```javascript
33-
* import { EC2ProtocolClient, GreetingWithErrorsCommand } from "@aws-sdk/aws-ec2"; // ES Modules import
34-
* // const { EC2ProtocolClient, GreetingWithErrorsCommand } = require("@aws-sdk/aws-ec2"); // CommonJS import
33+
* import { EC2ProtocolClient, GreetingWithErrorsCommand } from "@aws-sdk/aws-protocoltests-ec2"; // ES Modules import
34+
* // const { EC2ProtocolClient, GreetingWithErrorsCommand } = require("@aws-sdk/aws-protocoltests-ec2"); // CommonJS import
3535
* const client = new EC2ProtocolClient(config);
3636
* const command = new GreetingWithErrorsCommand(input);
3737
* const response = await client.send(command);

protocol_tests/aws-ec2/src/commands/IgnoresWrappingXmlNameCommand.ts renamed to protocol_tests/aws-protocoltests-ec2/src/commands/IgnoresWrappingXmlNameCommand.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ export interface IgnoresWrappingXmlNameCommandOutput extends IgnoresWrappingXmlN
2828
* @example
2929
* Use a bare-bones client and the command you need to make an API call.
3030
* ```javascript
31-
* import { EC2ProtocolClient, IgnoresWrappingXmlNameCommand } from "@aws-sdk/aws-ec2"; // ES Modules import
32-
* // const { EC2ProtocolClient, IgnoresWrappingXmlNameCommand } = require("@aws-sdk/aws-ec2"); // CommonJS import
31+
* import { EC2ProtocolClient, IgnoresWrappingXmlNameCommand } from "@aws-sdk/aws-protocoltests-ec2"; // ES Modules import
32+
* // const { EC2ProtocolClient, IgnoresWrappingXmlNameCommand } = require("@aws-sdk/aws-protocoltests-ec2"); // CommonJS import
3333
* const client = new EC2ProtocolClient(config);
3434
* const command = new IgnoresWrappingXmlNameCommand(input);
3535
* const response = await client.send(command);

protocol_tests/aws-ec2/src/commands/NestedStructuresCommand.ts renamed to protocol_tests/aws-protocoltests-ec2/src/commands/NestedStructuresCommand.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ export interface NestedStructuresCommandOutput extends __MetadataBearer {}
2626
* @example
2727
* Use a bare-bones client and the command you need to make an API call.
2828
* ```javascript
29-
* import { EC2ProtocolClient, NestedStructuresCommand } from "@aws-sdk/aws-ec2"; // ES Modules import
30-
* // const { EC2ProtocolClient, NestedStructuresCommand } = require("@aws-sdk/aws-ec2"); // CommonJS import
29+
* import { EC2ProtocolClient, NestedStructuresCommand } from "@aws-sdk/aws-protocoltests-ec2"; // ES Modules import
30+
* // const { EC2ProtocolClient, NestedStructuresCommand } = require("@aws-sdk/aws-protocoltests-ec2"); // CommonJS import
3131
* const client = new EC2ProtocolClient(config);
3232
* const command = new NestedStructuresCommand(input);
3333
* const response = await client.send(command);

protocol_tests/aws-ec2/src/commands/NoInputAndOutputCommand.ts renamed to protocol_tests/aws-protocoltests-ec2/src/commands/NoInputAndOutputCommand.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ export interface NoInputAndOutputCommandOutput extends NoInputAndOutputOutput, _
2929
* @example
3030
* Use a bare-bones client and the command you need to make an API call.
3131
* ```javascript
32-
* import { EC2ProtocolClient, NoInputAndOutputCommand } from "@aws-sdk/aws-ec2"; // ES Modules import
33-
* // const { EC2ProtocolClient, NoInputAndOutputCommand } = require("@aws-sdk/aws-ec2"); // CommonJS import
32+
* import { EC2ProtocolClient, NoInputAndOutputCommand } from "@aws-sdk/aws-protocoltests-ec2"; // ES Modules import
33+
* // const { EC2ProtocolClient, NoInputAndOutputCommand } = require("@aws-sdk/aws-protocoltests-ec2"); // CommonJS import
3434
* const client = new EC2ProtocolClient(config);
3535
* const command = new NoInputAndOutputCommand(input);
3636
* const response = await client.send(command);

protocol_tests/aws-ec2/src/commands/QueryIdempotencyTokenAutoFillCommand.ts renamed to protocol_tests/aws-protocoltests-ec2/src/commands/QueryIdempotencyTokenAutoFillCommand.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ export interface QueryIdempotencyTokenAutoFillCommandOutput extends __MetadataBe
2626
* @example
2727
* Use a bare-bones client and the command you need to make an API call.
2828
* ```javascript
29-
* import { EC2ProtocolClient, QueryIdempotencyTokenAutoFillCommand } from "@aws-sdk/aws-ec2"; // ES Modules import
30-
* // const { EC2ProtocolClient, QueryIdempotencyTokenAutoFillCommand } = require("@aws-sdk/aws-ec2"); // CommonJS import
29+
* import { EC2ProtocolClient, QueryIdempotencyTokenAutoFillCommand } from "@aws-sdk/aws-protocoltests-ec2"; // ES Modules import
30+
* // const { EC2ProtocolClient, QueryIdempotencyTokenAutoFillCommand } = require("@aws-sdk/aws-protocoltests-ec2"); // CommonJS import
3131
* const client = new EC2ProtocolClient(config);
3232
* const command = new QueryIdempotencyTokenAutoFillCommand(input);
3333
* const response = await client.send(command);

protocol_tests/aws-ec2/src/commands/QueryListsCommand.ts renamed to protocol_tests/aws-protocoltests-ec2/src/commands/QueryListsCommand.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ export interface QueryListsCommandOutput extends __MetadataBearer {}
2323
* @example
2424
* Use a bare-bones client and the command you need to make an API call.
2525
* ```javascript
26-
* import { EC2ProtocolClient, QueryListsCommand } from "@aws-sdk/aws-ec2"; // ES Modules import
27-
* // const { EC2ProtocolClient, QueryListsCommand } = require("@aws-sdk/aws-ec2"); // CommonJS import
26+
* import { EC2ProtocolClient, QueryListsCommand } from "@aws-sdk/aws-protocoltests-ec2"; // ES Modules import
27+
* // const { EC2ProtocolClient, QueryListsCommand } = require("@aws-sdk/aws-protocoltests-ec2"); // CommonJS import
2828
* const client = new EC2ProtocolClient(config);
2929
* const command = new QueryListsCommand(input);
3030
* const response = await client.send(command);

protocol_tests/aws-ec2/src/commands/QueryTimestampsCommand.ts renamed to protocol_tests/aws-protocoltests-ec2/src/commands/QueryTimestampsCommand.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ export interface QueryTimestampsCommandOutput extends __MetadataBearer {}
2727
* @example
2828
* Use a bare-bones client and the command you need to make an API call.
2929
* ```javascript
30-
* import { EC2ProtocolClient, QueryTimestampsCommand } from "@aws-sdk/aws-ec2"; // ES Modules import
31-
* // const { EC2ProtocolClient, QueryTimestampsCommand } = require("@aws-sdk/aws-ec2"); // CommonJS import
30+
* import { EC2ProtocolClient, QueryTimestampsCommand } from "@aws-sdk/aws-protocoltests-ec2"; // ES Modules import
31+
* // const { EC2ProtocolClient, QueryTimestampsCommand } = require("@aws-sdk/aws-protocoltests-ec2"); // CommonJS import
3232
* const client = new EC2ProtocolClient(config);
3333
* const command = new QueryTimestampsCommand(input);
3434
* const response = await client.send(command);

protocol_tests/aws-ec2/src/commands/RecursiveXmlShapesCommand.ts renamed to protocol_tests/aws-protocoltests-ec2/src/commands/RecursiveXmlShapesCommand.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ export interface RecursiveXmlShapesCommandOutput extends RecursiveXmlShapesOutpu
2626
* @example
2727
* Use a bare-bones client and the command you need to make an API call.
2828
* ```javascript
29-
* import { EC2ProtocolClient, RecursiveXmlShapesCommand } from "@aws-sdk/aws-ec2"; // ES Modules import
30-
* // const { EC2ProtocolClient, RecursiveXmlShapesCommand } = require("@aws-sdk/aws-ec2"); // CommonJS import
29+
* import { EC2ProtocolClient, RecursiveXmlShapesCommand } from "@aws-sdk/aws-protocoltests-ec2"; // ES Modules import
30+
* // const { EC2ProtocolClient, RecursiveXmlShapesCommand } = require("@aws-sdk/aws-protocoltests-ec2"); // CommonJS import
3131
* const client = new EC2ProtocolClient(config);
3232
* const command = new RecursiveXmlShapesCommand(input);
3333
* const response = await client.send(command);

protocol_tests/aws-ec2/src/commands/SimpleInputParamsCommand.ts renamed to protocol_tests/aws-protocoltests-ec2/src/commands/SimpleInputParamsCommand.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ export interface SimpleInputParamsCommandOutput extends __MetadataBearer {}
2626
* @example
2727
* Use a bare-bones client and the command you need to make an API call.
2828
* ```javascript
29-
* import { EC2ProtocolClient, SimpleInputParamsCommand } from "@aws-sdk/aws-ec2"; // ES Modules import
30-
* // const { EC2ProtocolClient, SimpleInputParamsCommand } = require("@aws-sdk/aws-ec2"); // CommonJS import
29+
* import { EC2ProtocolClient, SimpleInputParamsCommand } from "@aws-sdk/aws-protocoltests-ec2"; // ES Modules import
30+
* // const { EC2ProtocolClient, SimpleInputParamsCommand } = require("@aws-sdk/aws-protocoltests-ec2"); // CommonJS import
3131
* const client = new EC2ProtocolClient(config);
3232
* const command = new SimpleInputParamsCommand(input);
3333
* const response = await client.send(command);

protocol_tests/aws-ec2/src/commands/XmlBlobsCommand.ts renamed to protocol_tests/aws-protocoltests-ec2/src/commands/XmlBlobsCommand.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ export interface XmlBlobsCommandOutput extends XmlBlobsOutput, __MetadataBearer
2323
* @example
2424
* Use a bare-bones client and the command you need to make an API call.
2525
* ```javascript
26-
* import { EC2ProtocolClient, XmlBlobsCommand } from "@aws-sdk/aws-ec2"; // ES Modules import
27-
* // const { EC2ProtocolClient, XmlBlobsCommand } = require("@aws-sdk/aws-ec2"); // CommonJS import
26+
* import { EC2ProtocolClient, XmlBlobsCommand } from "@aws-sdk/aws-protocoltests-ec2"; // ES Modules import
27+
* // const { EC2ProtocolClient, XmlBlobsCommand } = require("@aws-sdk/aws-protocoltests-ec2"); // CommonJS import
2828
* const client = new EC2ProtocolClient(config);
2929
* const command = new XmlBlobsCommand(input);
3030
* const response = await client.send(command);

protocol_tests/aws-ec2/src/commands/XmlEnumsCommand.ts renamed to protocol_tests/aws-protocoltests-ec2/src/commands/XmlEnumsCommand.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ export interface XmlEnumsCommandOutput extends XmlEnumsOutput, __MetadataBearer
2323
* @example
2424
* Use a bare-bones client and the command you need to make an API call.
2525
* ```javascript
26-
* import { EC2ProtocolClient, XmlEnumsCommand } from "@aws-sdk/aws-ec2"; // ES Modules import
27-
* // const { EC2ProtocolClient, XmlEnumsCommand } = require("@aws-sdk/aws-ec2"); // CommonJS import
26+
* import { EC2ProtocolClient, XmlEnumsCommand } from "@aws-sdk/aws-protocoltests-ec2"; // ES Modules import
27+
* // const { EC2ProtocolClient, XmlEnumsCommand } = require("@aws-sdk/aws-protocoltests-ec2"); // CommonJS import
2828
* const client = new EC2ProtocolClient(config);
2929
* const command = new XmlEnumsCommand(input);
3030
* const response = await client.send(command);

protocol_tests/aws-ec2/src/commands/XmlListsCommand.ts renamed to protocol_tests/aws-protocoltests-ec2/src/commands/XmlListsCommand.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ export interface XmlListsCommandOutput extends XmlListsOutput, __MetadataBearer
3333
* @example
3434
* Use a bare-bones client and the command you need to make an API call.
3535
* ```javascript
36-
* import { EC2ProtocolClient, XmlListsCommand } from "@aws-sdk/aws-ec2"; // ES Modules import
37-
* // const { EC2ProtocolClient, XmlListsCommand } = require("@aws-sdk/aws-ec2"); // CommonJS import
36+
* import { EC2ProtocolClient, XmlListsCommand } from "@aws-sdk/aws-protocoltests-ec2"; // ES Modules import
37+
* // const { EC2ProtocolClient, XmlListsCommand } = require("@aws-sdk/aws-protocoltests-ec2"); // CommonJS import
3838
* const client = new EC2ProtocolClient(config);
3939
* const command = new XmlListsCommand(input);
4040
* const response = await client.send(command);

protocol_tests/aws-ec2/src/commands/XmlTimestampsCommand.ts renamed to protocol_tests/aws-protocoltests-ec2/src/commands/XmlTimestampsCommand.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ export interface XmlTimestampsCommandOutput extends XmlTimestampsOutput, __Metad
2525
* @example
2626
* Use a bare-bones client and the command you need to make an API call.
2727
* ```javascript
28-
* import { EC2ProtocolClient, XmlTimestampsCommand } from "@aws-sdk/aws-ec2"; // ES Modules import
29-
* // const { EC2ProtocolClient, XmlTimestampsCommand } = require("@aws-sdk/aws-ec2"); // CommonJS import
28+
* import { EC2ProtocolClient, XmlTimestampsCommand } from "@aws-sdk/aws-protocoltests-ec2"; // ES Modules import
29+
* // const { EC2ProtocolClient, XmlTimestampsCommand } = require("@aws-sdk/aws-protocoltests-ec2"); // CommonJS import
3030
* const client = new EC2ProtocolClient(config);
3131
* const command = new XmlTimestampsCommand(input);
3232
* const response = await client.send(command);

protocol_tests/aws-ec2/.gitignore renamed to protocol_tests/aws-protocoltests-json-10/.gitignore

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,3 @@
77
*.tgz
88
*.log
99
package-lock.json
10-
11-
*.d.ts
12-
*.js
13-
*.js.map

0 commit comments

Comments
 (0)