@hybrid-compute/remote 0.0.5 → 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 +1 -0
- package/CHANGELOG.md +31 -0
- package/package.json +3 -3
package/.release-it.json
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,36 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.7](https://github.com/phun-ky/hybrid-compute/compare/@hybrid-compute/remote@0.0.6...@hybrid-compute/remote@0.0.7) (2025-06-01)
|
|
4
|
+
|
|
5
|
+
### Tasks
|
|
6
|
+
|
|
7
|
+
* 🤖 @hybrid-compute/core@0.0.8 ([39b4a8d](https://github.com/phun-ky/hybrid-compute/commit/39b4a8d747094374b293e65fa3031e9d6f6c3090))
|
|
8
|
+
* 🤖 @hybrid-compute/local@0.0.7 ([ba751aa](https://github.com/phun-ky/hybrid-compute/commit/ba751aaac67f414c7a371d64b1bea5d311a2df84))
|
|
9
|
+
* 🤖 @hybrid-compute/worker@0.0.6 ([4b1d7f0](https://github.com/phun-ky/hybrid-compute/commit/4b1d7f0ebb75a6bf049e9ca60c27cc8e5959cc43))
|
|
10
|
+
|
|
11
|
+
### Bug
|
|
12
|
+
|
|
13
|
+
* 🐛 Readd build and docs generation before release ([109ebb2](https://github.com/phun-ky/hybrid-compute/commit/109ebb2f7b6b91f260ca26e2838bdc89f4c97b76))
|
|
14
|
+
|
|
15
|
+
## [0.0.6](https://github.com/phun-ky/hybrid-compute/compare/@hybrid-compute/remote@0.0.5...@hybrid-compute/remote@0.0.6) (2025-06-01)
|
|
16
|
+
|
|
17
|
+
### Tasks
|
|
18
|
+
|
|
19
|
+
* 🤖 @hybrid-compute/core@0.0.7 ([2d9b75c](https://github.com/phun-ky/hybrid-compute/commit/2d9b75c3f72784f196e58b2f6ba7b66082229347))
|
|
20
|
+
* 🤖 @hybrid-compute/local@0.0.6 ([76950bb](https://github.com/phun-ky/hybrid-compute/commit/76950bb18413a55782f49c06def100d5ba569c7c))
|
|
21
|
+
* 🤖 @hybrid-compute/worker@0.0.5 ([25aea11](https://github.com/phun-ky/hybrid-compute/commit/25aea11d7a953db1c3b255efd7a6dbcc03bc43f6))
|
|
22
|
+
* 🤖 Add logo ([5dc5851](https://github.com/phun-ky/hybrid-compute/commit/5dc5851355bf9342045b54df03f1ed919cd5b4bd))
|
|
23
|
+
* 🤖 Sort the `package.json`-files ([d83d2d2](https://github.com/phun-ky/hybrid-compute/commit/d83d2d2fbfbb48681b7366dc86254635fb91c691))
|
|
24
|
+
* 🤖 Testing something ([0042a67](https://github.com/phun-ky/hybrid-compute/commit/0042a671fb12b987d07537e95db54bd9a77594f2))
|
|
25
|
+
|
|
26
|
+
### Bug
|
|
27
|
+
|
|
28
|
+
* 🐛 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)
|
|
29
|
+
|
|
30
|
+
### Refactoring
|
|
31
|
+
|
|
32
|
+
* 💡 Adjust release strategy ([6ceb0af](https://github.com/phun-ky/hybrid-compute/commit/6ceb0afd954348fb74643b7b4fa27874e621180e))
|
|
33
|
+
|
|
3
34
|
## 0.0.5 (2025-06-01)
|
|
4
35
|
|
|
5
36
|
### Tasks
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hybrid-compute/remote",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.7",
|
|
4
4
|
"description": "Remote compute backend using fetch or WebSocket transport for distributed task execution.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"remote",
|
|
@@ -29,14 +29,14 @@
|
|
|
29
29
|
"exports": "./dist/index.js",
|
|
30
30
|
"types": "./dist/index.d.ts",
|
|
31
31
|
"scripts": {
|
|
32
|
-
"release": "release-it",
|
|
33
32
|
"clean": "rm -rf dist tsconfig.tsbuildinfo",
|
|
33
|
+
"release": "release-it",
|
|
34
34
|
"test": "tsx --test **/__tests__/**/*.spec.ts",
|
|
35
35
|
"pretest:ci": "rm -rf coverage && mkdir -p coverage",
|
|
36
36
|
"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\""
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@hybrid-compute/core": "0.0.
|
|
39
|
+
"@hybrid-compute/core": "0.0.7"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
42
|
"eslint": "^9.27.0",
|