@quatrain/worker 1.1.52 → 1.1.54

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.
Files changed (2) hide show
  1. package/README.md +4 -0
  2. package/package.json +9 -4
package/README.md CHANGED
@@ -27,6 +27,10 @@ yarn add @quatrain/worker
27
27
  - **Process Spawning**: Safely wrap `child_process.spawn` into Promises with structured logging.
28
28
  - **Event Reporting**: Push HTTP patch events to a backend orchestrator using `axios` to update job statuses in real-time.
29
29
 
30
+ ## Documentation
31
+
32
+ For concrete examples and usage guides, please refer to the [How-To Guide](HOWTO.md).
33
+
30
34
  ## License
31
35
 
32
36
  AGPL-3.0-only
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quatrain/worker",
3
- "version": "1.1.52",
3
+ "version": "1.1.54",
4
4
  "description": "Container Worker helpers",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -11,6 +11,11 @@
11
11
  "dist/",
12
12
  "README.md"
13
13
  ],
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "git+https://github.com/Quatrain/Core.git",
17
+ "directory": "packages/worker"
18
+ },
14
19
  "author": "Quatrain Développement SAS <developers@quatrain.com>",
15
20
  "license": "AGPL-3.0-only",
16
21
  "devDependencies": {
@@ -28,9 +33,9 @@
28
33
  "typescript": "^5.1.5"
29
34
  },
30
35
  "dependencies": {
31
- "@quatrain/core": "^1.1.49",
32
- "@quatrain/queue": "^1.1.29",
33
- "@quatrain/storage": "^1.1.31",
36
+ "@quatrain/core": "^1.1.51",
37
+ "@quatrain/queue": "^1.1.31",
38
+ "@quatrain/storage": "^1.1.33",
34
39
  "axios": "^1.7.7",
35
40
  "fluent-ffmpeg": "^2.1.2",
36
41
  "fs-extra": "^11.2.0",