File tree Expand file tree Collapse file tree 5 files changed +10
-3
lines changed
scripts/runtime-dependency-version-check Expand file tree Collapse file tree 5 files changed +10
-3
lines changed Original file line number Diff line number Diff line change 16
16
"main" : " ./dist-cjs/index.js" ,
17
17
"module" : " ./dist-es/index.js" ,
18
18
"dependencies" : {
19
+ "@smithy/eventstream-codec" : " ^2.0.0" ,
20
+ "@smithy/is-array-buffer" : " ^2.0.0" ,
19
21
"@smithy/node-config-provider" : " ^2.1.9" ,
22
+ "@smithy/protocol-http" : " ^3.0.12" ,
20
23
"@smithy/types" : " ^2.8.0" ,
24
+ "@smithy/util-utf8" : " ^2.0.2" ,
21
25
"@smithy/util-config-provider" : " ^2.1.0" ,
22
26
"fflate" : " 0.8.1" ,
23
27
"tslib" : " ^2.5.0"
Original file line number Diff line number Diff line change 24
24
"@aws-sdk/middleware-signing" : " *" ,
25
25
"@aws-sdk/types" : " *" ,
26
26
"@aws-sdk/util-format-url" : " *" ,
27
+ "@smithy/eventstream-codec" : " ^2.0.0" ,
27
28
"@smithy/eventstream-serde-browser" : " ^2.0.16" ,
28
29
"@smithy/fetch-http-handler" : " ^2.3.2" ,
29
30
"@smithy/protocol-http" : " ^3.0.12" ,
Original file line number Diff line number Diff line change 21
21
},
22
22
"license" : " Apache-2.0" ,
23
23
"dependencies" : {
24
+ "@aws-sdk/types" : " *" ,
24
25
"@smithy/node-config-provider" : " ^2.1.9" ,
25
26
"@smithy/types" : " ^2.8.0" ,
26
27
"@smithy/util-config-provider" : " ^2.1.0" ,
Original file line number Diff line number Diff line change 23
23
"license" : " Apache-2.0" ,
24
24
"dependencies" : {
25
25
"@aws-sdk/types" : " *" ,
26
+ "@smithy/types" : " ^2.8.0" ,
26
27
"@smithy/util-endpoints" : " ^1.0.8" ,
27
28
"tslib" : " ^2.5.0"
28
29
},
Original file line number Diff line number Diff line change @@ -44,9 +44,9 @@ const walk = require("../utils/walk");
44
44
const importedDependencies = [ ] ;
45
45
importedDependencies . push (
46
46
...new Set (
47
- [ ...( contents . toString ( ) . match ( / f r o m " ( @ ( a w s - s d k | s m i t h y ) \/ .* ?) " / g) || [ ] ) ]
48
- . slice ( 1 )
49
- . map ( ( _ ) => _ . replace ( / f r o m " / g , "" ) . replace ( / " $ / , "" ) )
47
+ [ ...( contents . toString ( ) . match ( / f r o m " ( @ ( a w s - s d k | s m i t h y ) \/ .* ?) " ; / g) || [ ] ) ] . map ( ( _ ) =>
48
+ _ . replace ( / f r o m " / g , "" ) . replace ( / " ; $ / , "" )
49
+ )
50
50
)
51
51
) ;
52
52
You can’t perform that action at this time.
0 commit comments