@kapeta/local-cluster-service 0.1.0 → 0.1.1

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.1.1](https://github.com/kapetacom/local-cluster-service/compare/v0.1.0...v0.1.1) (2023-05-06)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * Add missing import ([54a570c](https://github.com/kapetacom/local-cluster-service/commit/54a570c8c0746ae014fbf9411c85dbf255bf8cea))
7
+
1
8
  # [0.1.0](https://github.com/kapetacom/local-cluster-service/compare/v0.0.76...v0.1.0) (2023-05-06)
2
9
 
3
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kapeta/local-cluster-service",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Manages configuration, ports and service discovery for locally running Kapeta systems",
5
5
  "main": "index.js",
6
6
  "repository": {
@@ -2,7 +2,7 @@ const {Docker} = require("node-docker-api");
2
2
  const path = require("path");
3
3
  const _ = require('lodash');
4
4
  const FS = require("node:fs");
5
-
5
+ const os = require("os");
6
6
  const LABEL_PORT_PREFIX = "kapeta_port-";
7
7
 
8
8
  const NANO_SECOND = 1000000;