spooder 6.1.6 → 6.1.7

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/cli.ts +2 -0
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "spooder",
3
3
  "author": "Kruithne <kruithne@gmail.com>",
4
4
  "type": "module",
5
- "version": "6.1.6",
5
+ "version": "6.1.7",
6
6
  "module": "./src/api.ts",
7
7
  "bin": {
8
8
  "spooder": "./src/cli.ts"
package/src/cli.ts CHANGED
@@ -296,6 +296,8 @@ async function start_server() {
296
296
 
297
297
  const config = await get_config();
298
298
 
299
+ await apply_updates(config);
300
+
299
301
  const instances = config.instances;
300
302
  const n_instances = instances.length;
301
303