covenant-bridge 0.1.1 → 0.1.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/dist/backend.js CHANGED
@@ -4,10 +4,10 @@
4
4
  * Main entry point for the LinuxCNC-Eden bridge.
5
5
  * Initializes and exposes all AppBus services.
6
6
  */
7
- import { initLinuxCNCService } from "./services/linuxcnc.js";
8
- import { initGCodeService } from "./services/gcode.js";
9
- import { initHalService } from "./services/hal.js";
10
- import { initPositionLoggerService } from "./services/position-logger.js";
7
+ import { initLinuxCNCService } from "./services/linuxcnc";
8
+ import { initGCodeService } from "./services/gcode";
9
+ import { initHalService } from "./services/hal";
10
+ import { initPositionLoggerService } from "./services/position-logger";
11
11
  const appId = process.env.EDEN_APP_ID;
12
12
  console.log(`[Covenant Bridge] Starting for ${appId}`);
13
13
  // Initialize all services
@@ -1 +1 @@
1
- {"version":3,"file":"backend.js","sourceRoot":"","sources":["../src/backend.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,EAAE,mBAAmB,EAAE,MAAM,wBAAwB,CAAC;AAC7D,OAAO,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAC;AACvD,OAAO,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAC;AACnD,OAAO,EAAE,yBAAyB,EAAE,MAAM,+BAA+B,CAAC;AAE1E,MAAM,KAAK,GAAG,OAAO,CAAC,GAAG,CAAC,WAAW,CAAC;AACtC,OAAO,CAAC,GAAG,CAAC,kCAAkC,KAAK,EAAE,CAAC,CAAC;AAEvD,0BAA0B;AAC1B,mBAAmB,EAAE,CAAC;AACtB,gBAAgB,EAAE,CAAC;AACnB,cAAc,EAAE,CAAC;AACjB,yBAAyB,EAAE,CAAC;AAE5B,OAAO,CAAC,GAAG,CAAC,4CAA4C,CAAC,CAAC"}
1
+ {"version":3,"file":"backend.js","sourceRoot":"","sources":["../src/backend.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,EAAE,mBAAmB,EAAE,MAAM,qBAAqB,CAAC;AAC1D,OAAO,EAAE,gBAAgB,EAAE,MAAM,kBAAkB,CAAC;AACpD,OAAO,EAAE,cAAc,EAAE,MAAM,gBAAgB,CAAC;AAChD,OAAO,EAAE,yBAAyB,EAAE,MAAM,4BAA4B,CAAC;AAEvE,MAAM,KAAK,GAAG,OAAO,CAAC,GAAG,CAAC,WAAW,CAAC;AACtC,OAAO,CAAC,GAAG,CAAC,kCAAkC,KAAK,EAAE,CAAC,CAAC;AAEvD,0BAA0B;AAC1B,mBAAmB,EAAE,CAAC;AACtB,gBAAgB,EAAE,CAAC;AACnB,cAAc,EAAE,CAAC;AACjB,yBAAyB,EAAE,CAAC;AAE5B,OAAO,CAAC,GAAG,CAAC,4CAA4C,CAAC,CAAC"}
package/manifest.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "id": "com.covenant.bridge",
3
3
  "name": "Covenant Bridge",
4
- "version": "0.1.1",
4
+ "version": "0.1.5",
5
5
  "description": "LinuxCNC to Eden bridge - exposes LinuxCNC functionality via AppBus services",
6
6
  "author": "Dariusz Majnert",
7
7
  "backend": {
@@ -24,5 +24,10 @@
24
24
  "name": "position-logger",
25
25
  "description": "Machine position logging and history streaming"
26
26
  }
27
+ ],
28
+ "include": [
29
+ "node_modules/@linuxcnc-node/core/build/Release/nml_addon.node",
30
+ "node_modules/@linuxcnc-node/gcode/build/Release/gcode_addon.node",
31
+ "node_modules/@linuxcnc-node/hal/build/Release/hal_addon.node"
27
32
  ]
28
33
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "covenant-bridge",
3
- "version": "0.1.1",
3
+ "version": "0.1.5",
4
4
  "description": "LinuxCNC to Eden bridge worker",
5
5
  "main": "dist/backend.js",
6
6
  "type": "module",
@@ -9,7 +9,7 @@
9
9
  "manifest.json"
10
10
  ],
11
11
  "scripts": {
12
- "build": "tsc && genesis build . -o dist/bridge.edenite",
12
+ "build": "tsc && genesis build . -o bridge.edenite",
13
13
  "clean": "rm -rf dist",
14
14
  "rebuild": "npm run clean && npm run build",
15
15
  "prepublishOnly": "npm run rebuild"
@@ -32,7 +32,7 @@
32
32
  "picomatch": "^4.0.3"
33
33
  },
34
34
  "devDependencies": {
35
- "@edenapp/genesis": "^0.2.2",
35
+ "@edenapp/genesis": "^0.4.0",
36
36
  "@types/dlv": "^1.1.5",
37
37
  "@types/node": "^20.0.0",
38
38
  "@types/picomatch": "^4.0.2",
Binary file