@kapeta/local-cluster-service 0.5.4 → 0.5.5

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.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## [0.5.5](https://github.com/kapetacom/local-cluster-service/compare/v0.5.4...v0.5.5) (2023-06-16)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * missed a few imports for cluster config ([6f2a491](https://github.com/kapetacom/local-cluster-service/commit/6f2a4919e2d100d2ae20a346d202eb2477282077))
7
+
1
8
  ## [0.5.4](https://github.com/kapetacom/local-cluster-service/compare/v0.5.3...v0.5.4) (2023-06-16)
2
9
 
3
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kapeta/local-cluster-service",
3
- "version": "0.5.4",
3
+ "version": "0.5.5",
4
4
  "description": "Manages configuration, ports and service discovery for locally running Kapeta systems",
5
5
  "main": "index.js",
6
6
  "repository": {
@@ -1,4 +1,4 @@
1
- const ClusterConfiguration = require("@kapeta/local-cluster-config");
1
+ const ClusterConfiguration = require("@kapeta/local-cluster-config").default;
2
2
  const FS = require("node:fs");
3
3
  const FSExtra = require("fs-extra");
4
4
  const Path = require("node:path");
@@ -2,7 +2,7 @@ const {spawn} = require('node:child_process');
2
2
  const FS = require('node:fs');
3
3
  const Path = require('node:path');
4
4
  const {Docker} = require('node-docker-api');
5
- const ClusterConfig = require("@kapeta/local-cluster-config");
5
+ const ClusterConfig = require("@kapeta/local-cluster-config").default;
6
6
  const {readYML} = require("./utils");
7
7
  const {parseKapetaUri} = require("@kapeta/nodejs-utils");
8
8
  const serviceManager = require("../serviceManager");