File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed
Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 11import { setTimeout } from "node:timers" ;
22import { executionModeDefault } from "./executionModeDefault.js" ;
33
4- export * from "./executionModeDefault.js" ;
5- export * from "./executionModeDurableContext.js" ;
6- export * from "./executionModeStreamifyResponse.js" ;
4+ export { executionModeDefault } from "./executionModeDefault.js" ;
5+ export { executionModeDurableContext } from "./executionModeDurableContext.js" ;
6+ export { executionModeStreamifyResponse } from "./executionModeStreamifyResponse.js" ;
77
88const defaultLambdaHandler = ( ) => { } ;
99const defaultPluginConfig = {
@@ -18,7 +18,7 @@ const defaultPluginConfig = {
1818 executionMode : executionModeDefault ,
1919} ;
2020
21- const middy = ( setupLambdaHandler , pluginConfig ) => {
21+ export const middy = ( setupLambdaHandler , pluginConfig ) => {
2222 let lambdaHandler ;
2323 let plugin ;
2424 // Allow base handler to be set using .handler()
Original file line number Diff line number Diff line change 1111 "access" : " public"
1212 },
1313 "module" : " ./index.js" ,
14+ "sideEffects" : false ,
1415 "exports" : {
1516 "." : {
1617 "import" : {
You can’t perform that action at this time.
0 commit comments