@pbvision/cloud-run-service 0.0.16 → 0.0.17

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/main.js +1 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pbvision/cloud-run-service",
3
- "version": "0.0.16",
3
+ "version": "0.0.17",
4
4
  "description": "fastify-firestore-service Web Framework on Cloud Run",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",
package/src/main.js CHANGED
@@ -87,5 +87,6 @@ export async function runService (components) {
87
87
  // start the server
88
88
  service = await makeService(components)
89
89
  service.listen({ port, host: '0.0.0.0' })
90
+ return service
90
91
  }
91
92
  }