File tree Expand file tree Collapse file tree 4 files changed +5
-3
lines changed Expand file tree Collapse file tree 4 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -297,7 +297,7 @@ export class RunManager {
297297 }
298298 return totalCount ;
299299 }
300- async spawnInit ( ) {
300+ async spawnInit ( ) : Promise < true | never > {
301301 const proc = this . spawnProcess ( "init" ) ;
302302 const status = await proc . status ;
303303 if ( ! status . success ) {
Original file line number Diff line number Diff line change 11{
22 "name" : " @inspatial/cloud" ,
3- "version" : " 0.7.25 " ,
3+ "version" : " 0.7.26 " ,
44 "license" : " Apache-2.0" ,
55 "exports" : {
66 "." : " ./mod.ts" ,
Original file line number Diff line number Diff line change 11import MimeTypes from "~/files/mime-types/mime-types.ts" ;
22import { requestHandler } from "~/serve/request-handler.ts" ;
3+ export { InCloudRunner } from "~/runner/in-cloud-runner.ts" ;
4+ export { RunManager } from "#cli/run-manager.ts" ;
35export { StaticFileHandler } from "~/static/staticFileHandler.ts" ;
46export { PostgresPool } from "~/orm/db/postgres/pgPool.ts" ;
57export { InCloud } from "~/in-cloud.ts" ;
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ import { CloudExtension } from "~/extension/cloud-extension.ts";
1313import { isPgError } from "../orm/db/postgres/pgError.ts" ;
1414import { PGErrorCode } from "../orm/db/postgres/maps/errorMap.ts" ;
1515
16- class InCloudRunner {
16+ export class InCloudRunner {
1717 #mode?: CloudRunnerMode ;
1818 rootPath : string ;
1919 #initialized: boolean = false ;
You can’t perform that action at this time.
0 commit comments