File tree Expand file tree Collapse file tree 4 files changed +30
-154
lines changed Expand file tree Collapse file tree 4 files changed +30
-154
lines changed Original file line number Diff line number Diff line change 18
18
description : |
19
19
A clear and concise description of what the bug is. A bug is **unintended**. A feature not being implemented is **not a bug**.
20
20
placeholder : |
21
- eg: aws-sdk-js-codemod crashes with a specific error .
21
+ eg: Running transform "transformName" on the provided input causes it to crash .
22
22
validations :
23
23
required : true
24
24
28
28
description : The _minimal_ steps to reproduce your issue.
29
29
placeholder : |
30
30
Please share code or minimal repo, and steps to reproduce the behavior.
31
+ Like an example input file, and the command you ran.
32
+
33
+ ```ts
34
+ import AWS from "aws-sdk";
35
+
36
+ const region = "us-west-2";
37
+ const client = new AWS.DynamoDB({ region });
38
+ const response = await client.listTables({}).promise();
39
+ ```
31
40
validations :
32
41
required : true
33
42
45
54
label : Expected behavior
46
55
description : A clear and concise description of what you were expecting to happen.
47
56
placeholder : |
48
- eg: The aws-sdk-js-codemod script should have run successfully.
57
+ eg: The aws-sdk-js-codemod script should have run successfully, and/or return specific output .
49
58
validations :
50
59
required : true
51
60
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 18
18
description : |
19
19
Is your feature request related to a problem? Please describe.
20
20
placeholder : |
21
- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
21
+ A clear and concise description of what the problem is.
22
+
23
+ For example, I need transformation for the following code:
24
+ ```ts
25
+ import AWS from "aws-sdk";
26
+
27
+ const region = "us-west-2";
28
+ const client = new AWS.DynamoDB({ region });
29
+ const response = await client.listTables({}).promise();
30
+ ```
22
31
validations :
23
32
required : true
24
33
28
37
description : Describe the solution you'd like.
29
38
placeholder : |
30
39
A clear and concise description of what you want to happen.
40
+
41
+ For example, I'd like the above code to be transformed to:
42
+ ```ts
43
+ import { DynamoDB } from "@aws-sdk/client-dynamodb";
44
+
45
+ const region = "us-west-2";
46
+ const client = new DynamoDB({ region });
47
+ const response = await client.listTables({});
48
+ ```
31
49
validations :
32
50
required : true
33
51
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments