@platformatic/runtime 0.41.2 → 0.41.3

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.
@@ -9,5 +9,5 @@
9
9
  "plugin.js"
10
10
  ]
11
11
  },
12
- "watch": true
12
+ "watch": false
13
13
  }
package/lib/app.js CHANGED
@@ -110,7 +110,7 @@ class PlatformaticApp {
110
110
 
111
111
  if (
112
112
  config.plugins !== undefined &&
113
- config.watch?.enabled !== false
113
+ this.#originalWatch?.enabled !== false
114
114
  ) {
115
115
  this.#startFileWatching()
116
116
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platformatic/runtime",
3
- "version": "0.41.2",
3
+ "version": "0.41.3",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -24,8 +24,8 @@
24
24
  "standard": "^17.1.0",
25
25
  "tsd": "^0.29.0",
26
26
  "typescript": "^5.1.6",
27
- "@platformatic/sql-graphql": "0.41.2",
28
- "@platformatic/sql-mapper": "0.41.2"
27
+ "@platformatic/sql-graphql": "0.41.3",
28
+ "@platformatic/sql-mapper": "0.41.3"
29
29
  },
30
30
  "dependencies": {
31
31
  "@hapi/topo": "^6.0.2",
@@ -42,12 +42,12 @@
42
42
  "pino": "^8.14.1",
43
43
  "pino-pretty": "^10.0.0",
44
44
  "undici": "^5.22.1",
45
- "@platformatic/composer": "0.41.2",
46
- "@platformatic/config": "0.41.2",
47
- "@platformatic/db": "0.41.2",
48
- "@platformatic/service": "0.41.2",
49
- "@platformatic/telemetry": "0.41.2",
50
- "@platformatic/utils": "0.41.2"
45
+ "@platformatic/composer": "0.41.3",
46
+ "@platformatic/config": "0.41.3",
47
+ "@platformatic/db": "0.41.3",
48
+ "@platformatic/service": "0.41.3",
49
+ "@platformatic/telemetry": "0.41.3",
50
+ "@platformatic/utils": "0.41.3"
51
51
  },
52
52
  "standard": {
53
53
  "ignore": [
package/test/api.test.js CHANGED
@@ -61,7 +61,9 @@ test('should get service config', async (t) => {
61
61
  join(fixturesDir, 'monorepo', 'serviceAppWithLogger', 'plugin.js')
62
62
  ]
63
63
  },
64
- watch: false
64
+ watch: {
65
+ enabled: false
66
+ }
65
67
  })
66
68
  })
67
69