@semiont/jobs 0.2.30-build.47 → 0.2.30
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/README.md +0 -2
- package/package.json +2 -4
package/README.md
CHANGED
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
# @semiont/jobs
|
|
2
2
|
|
|
3
3
|
[](https://github.com/The-AI-Alliance/semiont/actions/workflows/package-tests.yml?query=branch%3Amain+is%3Asuccess+job%3A%22Test+jobs%22)
|
|
4
|
-
[](https://codecov.io/gh/The-AI-Alliance/semiont?flag=jobs)
|
|
5
4
|
[](https://www.npmjs.com/package/@semiont/jobs)
|
|
6
|
-
[](https://www.npmjs.com/package/@semiont/jobs)
|
|
7
5
|
[](https://github.com/The-AI-Alliance/semiont/blob/main/LICENSE)
|
|
8
6
|
|
|
9
7
|
Filesystem-based job queue and worker infrastructure for [Semiont](https://github.com/The-AI-Alliance/semiont) - provides async job processing, background workers, and long-running task management.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@semiont/jobs",
|
|
3
|
-
"version": "0.2.30
|
|
3
|
+
"version": "0.2.30",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Filesystem-based job queue and worker infrastructure",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -18,15 +18,13 @@
|
|
|
18
18
|
"scripts": {
|
|
19
19
|
"build": "npm run typecheck && tsup",
|
|
20
20
|
"typecheck": "tsc --noEmit",
|
|
21
|
-
"test": "vitest"
|
|
22
|
-
"test:coverage": "vitest run --coverage"
|
|
21
|
+
"test": "vitest"
|
|
23
22
|
},
|
|
24
23
|
"dependencies": {
|
|
25
24
|
"@semiont/api-client": "*",
|
|
26
25
|
"@semiont/core": "*"
|
|
27
26
|
},
|
|
28
27
|
"devDependencies": {
|
|
29
|
-
"@vitest/coverage-v8": "^2.1.8",
|
|
30
28
|
"tsup": "^8.0.1",
|
|
31
29
|
"typescript": "^5.6.3",
|
|
32
30
|
"vitest": "^2.1.8"
|