@live-change/backup-service 0.9.9 → 0.9.10

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/index.js +1 -1
  2. package/package.json +4 -4
package/index.js CHANGED
@@ -185,7 +185,7 @@ expressApp.post('/restore/:fileName', async (req, res) => {
185
185
  return 'ok'
186
186
  })
187
187
 
188
- definition.beforeStart(() => {
188
+ definition.afterStart(() => {
189
189
 
190
190
  expressApp.listen(backupServerPort, () => {
191
191
  console.log(`backup port listening on ${backupServerPort}`)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@live-change/backup-service",
3
- "version": "0.9.9",
3
+ "version": "0.9.10",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -9,14 +9,14 @@
9
9
  "author": "Michał Łaszczewski <michal@emikse.com>",
10
10
  "license": "BSD-3-Clause",
11
11
  "dependencies": {
12
- "@live-change/db-client": "^0.9.9",
13
- "@live-change/framework": "^0.9.9",
12
+ "@live-change/db-client": "^0.9.10",
13
+ "@live-change/framework": "^0.9.10",
14
14
  "express": "^4.18.2",
15
15
  "express-basic-auth": "^1.2.1",
16
16
  "fs-extra": "^11.1.1",
17
17
  "p-queue": "^8.0.1",
18
18
  "progress-stream": "^2.0.0"
19
19
  },
20
- "gitHead": "150ef8008399a3b6a160985a4a8d4e91255c0e99",
20
+ "gitHead": "d41e404c1933e9ed6e3927d85a5dadf66da0f951",
21
21
  "type": "module"
22
22
  }