File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
packages/app/src/cli/services/function Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -92,7 +92,7 @@ async function buildJSFunctionWithoutTasks(
9292 }
9393}
9494
95- export async function buildJSFunctionWithTasks (
95+ async function buildJSFunctionWithTasks (
9696 fun : ExtensionInstance < FunctionConfigType > ,
9797 options : JSFunctionBuildOptions ,
9898 builder : JavyBuilder ,
@@ -331,7 +331,7 @@ export async function installJavy(app: AppInterface) {
331331 await Promise . all ( downloadPromises )
332332}
333333
334- export interface JavyBuilder {
334+ interface JavyBuilder {
335335 bundle ( fun : ExtensionInstance < FunctionConfigType > , options : JSFunctionBuildOptions ) : Promise < BuildResult >
336336 compile (
337337 fun : ExtensionInstance < FunctionConfigType > ,
@@ -340,7 +340,7 @@ export interface JavyBuilder {
340340 ) : Promise < void >
341341}
342342
343- export const DefaultJavyBuilder : JavyBuilder = {
343+ const DefaultJavyBuilder : JavyBuilder = {
344344 async bundle ( fun : ExtensionInstance < FunctionConfigType > , options : JSFunctionBuildOptions ) {
345345 return bundleExtension ( fun , options )
346346 } ,
You can’t perform that action at this time.
0 commit comments