File tree Expand file tree Collapse file tree 1 file changed +31
-10
lines changed Expand file tree Collapse file tree 1 file changed +31
-10
lines changed Original file line number Diff line number Diff line change @@ -18,29 +18,50 @@ body:
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: Running aws-sdk-js-v2-to-v3 transform on provided input causes it to crash.
21
+ eg: Running transform "transformName" on the provided input causes it to crash.
22
+ validations :
23
+ required : true
24
+
25
+ - type : dropdown
26
+ id : template-name
27
+ attributes :
28
+ label : Template name
29
+ description : Which template are you seeing this error for?
30
+ options :
31
+ - v2-to-v3
32
+ - N/A (described above)
22
33
validations :
23
34
required : true
24
35
25
36
- type : textarea
26
37
attributes :
27
- label : Steps to reproduce
28
- description : |
29
- The _minimal_ information needed to reproduce your issue (ideally provided input, and expected output).
38
+ label : Input code
39
+ description : The _minimal_ input file to reproduce your issue.
30
40
placeholder : |
31
- ### Input
32
41
```ts
33
42
import AWS from "aws-sdk";
34
43
35
44
const region = "us-west-2";
36
45
const client = new AWS.DynamoDB({ region });
37
46
const response = await client.listTables({}).promise();
38
47
```
48
+ validations :
49
+ required : true
39
50
40
- ### Observed Output
41
- ```ts
42
- ```
51
+ - type : textarea
52
+ attributes :
53
+ label : Observed failure
54
+ description : A concise description of what error you're experiencing.
55
+ placeholder : |
56
+ eg: The aws-sdk-js-codemod script returned the following error:
57
+ validations :
58
+ required : true
43
59
60
+ - type : textarea
61
+ attributes :
62
+ label : Expected output
63
+ description : Thw output file you expected to see.
64
+ placeholder : |
44
65
### Expected Output
45
66
```ts
46
67
import { DynamoDB } from "@aws-sdk/client-dynamodb";
57
78
label : Environment
58
79
render : shell
59
80
description : |
60
- Run `node -v` and `jscodeshift -v ` and paste the result into the form
81
+ Run `aws-sdk-js-codemod --version ` and paste the result into the form
61
82
placeholder : |
62
- node version: v16.14 .0
83
+ aws-sdk-js-codemod: 0.1 .0
63
84
64
85
jscodeshift: 0.13.1
65
86
- babel: 7.17.5
You can’t perform that action at this time.
0 commit comments