@cedarjs/jobs 2.0.1-next.23 → 2.0.1-rc.2
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/errors.js +1 -1
- package/package.json +6 -6
package/dist/errors.js
CHANGED
|
@@ -76,7 +76,7 @@ class JobExportNotFoundError extends CedarJSJobsError {
|
|
|
76
76
|
class JobsLibNotFoundError extends CedarJSJobsError {
|
|
77
77
|
constructor() {
|
|
78
78
|
super(
|
|
79
|
-
`api/src/lib/${JOBS_CONFIG_FILENAME} not found. Run \`yarn
|
|
79
|
+
`api/src/lib/${JOBS_CONFIG_FILENAME} not found. Run \`yarn rw setup jobs\` to create this file and configure background jobs. Already did that? You'll need to run \`yarn rw dev\` or \`yarn rw build\` before you can start the job workers!`
|
|
80
80
|
);
|
|
81
81
|
}
|
|
82
82
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cedarjs/jobs",
|
|
3
|
-
"version": "2.0.1-
|
|
3
|
+
"version": "2.0.1-rc.2",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+https://github.com/cedarjs/cedar.git",
|
|
@@ -38,22 +38,22 @@
|
|
|
38
38
|
"test:watch": "vitest"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@cedarjs/cli-helpers": "2.0.1-
|
|
42
|
-
"@cedarjs/project-config": "2.0.1-
|
|
41
|
+
"@cedarjs/cli-helpers": "2.0.1-rc.2",
|
|
42
|
+
"@cedarjs/project-config": "2.0.1-rc.2",
|
|
43
43
|
"cron-parser": "5.3.1",
|
|
44
44
|
"type-fest": "4.26.1"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
|
-
"@cedarjs/framework-tools": "2.0.1-
|
|
47
|
+
"@cedarjs/framework-tools": "2.0.1-rc.2",
|
|
48
48
|
"@prisma/client": "6.19.0",
|
|
49
49
|
"concurrently": "8.2.2",
|
|
50
50
|
"publint": "0.3.12",
|
|
51
51
|
"tsx": "4.20.5",
|
|
52
|
-
"typescript": "5.9.
|
|
52
|
+
"typescript": "5.9.2",
|
|
53
53
|
"vitest": "3.2.4"
|
|
54
54
|
},
|
|
55
55
|
"publishConfig": {
|
|
56
56
|
"access": "public"
|
|
57
57
|
},
|
|
58
|
-
"gitHead": "
|
|
58
|
+
"gitHead": "730b259c974f822005234ac851d6b9c7f9256a0e"
|
|
59
59
|
}
|