@hybrid-compute/core 0.0.6 → 0.0.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.
package/.release-it.json CHANGED
@@ -6,6 +6,7 @@
6
6
  },
7
7
  "github": {
8
8
  "release": true,
9
+ "releaseName": "@hybrid-compute/worker@${version}",
9
10
  "tokenRef": "GH_TOKEN"
10
11
  },
11
12
  "npm": {
package/CHANGELOG.md CHANGED
@@ -1,5 +1,24 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.0.7](https://github.com/phun-ky/hybrid-compute/compare/@hybrid-compute/core@0.0.6...@hybrid-compute/core@0.0.7) (2025-06-01)
4
+
5
+ ### Tasks
6
+
7
+ * 🤖 @hybrid-compute/local@0.0.5 ([3f06027](https://github.com/phun-ky/hybrid-compute/commit/3f060271bf87c763d557f3a54248f6afb1f7ebfe))
8
+ * 🤖 @hybrid-compute/remote@0.0.5 ([bceff50](https://github.com/phun-ky/hybrid-compute/commit/bceff5065d308bfa7b20cd88dfb2a8cba6bfde59))
9
+ * 🤖 @hybrid-compute/worker@0.0.5 ([25aea11](https://github.com/phun-ky/hybrid-compute/commit/25aea11d7a953db1c3b255efd7a6dbcc03bc43f6))
10
+ * 🤖 Add logo ([5dc5851](https://github.com/phun-ky/hybrid-compute/commit/5dc5851355bf9342045b54df03f1ed919cd5b4bd))
11
+ * 🤖 Sort the `package.json`-files ([d83d2d2](https://github.com/phun-ky/hybrid-compute/commit/d83d2d2fbfbb48681b7366dc86254635fb91c691))
12
+ * 🤖 Testing something ([0042a67](https://github.com/phun-ky/hybrid-compute/commit/0042a671fb12b987d07537e95db54bd9a77594f2))
13
+
14
+ ### Bug
15
+
16
+ * 🐛 Fake a lerna enviroment to detect packages changed ([7616639](https://github.com/phun-ky/hybrid-compute/commit/7616639ab7c6b2dea7b145ea1b8651802662d46a)), closes [#2](https://github.com/phun-ky/hybrid-compute/issues/2)
17
+
18
+ ### Refactoring
19
+
20
+ * 💡 Adjust release strategy ([6ceb0af](https://github.com/phun-ky/hybrid-compute/commit/6ceb0afd954348fb74643b7b4fa27874e621180e))
21
+
3
22
  ## 0.0.6 (2025-06-01)
4
23
 
5
24
  ### Tasks
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hybrid-compute/core",
3
- "version": "0.0.6",
3
+ "version": "0.0.7",
4
4
  "description": "Core orchestrator for dispatching compute tasks to local, threaded, or remote backends.",
5
5
  "keywords": [
6
6
  "compute",
@@ -34,6 +34,9 @@
34
34
  "pretest:ci": "rm -rf coverage && mkdir -p coverage",
35
35
  "test:ci": "glob -c \"node --import tsx --test --no-warnings --experimental-test-coverage --test-reporter=cobertura --test-reporter-destination=coverage/cobertura-coverage.xml --test-reporter=spec --test-reporter-destination=stdout\" \"**/__tests__/**/*.spec.ts\""
36
36
  },
37
+ "dependencies": {
38
+ "@phun-ky/typeof": "^1.2.15"
39
+ },
37
40
  "devDependencies": {
38
41
  "@types/node": "^22.15.24",
39
42
  "eslint": "^9.27.0",
@@ -47,8 +50,5 @@
47
50
  },
48
51
  "publishConfig": {
49
52
  "access": "public"
50
- },
51
- "dependencies": {
52
- "@phun-ky/typeof": "^1.2.15"
53
53
  }
54
54
  }