@lage-run/scheduler 0.8.2 → 0.8.4
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/CHANGELOG.json +43 -1
- package/CHANGELOG.md +20 -2
- package/lib/SimpleScheduler.js +2 -2
- package/lib/index.d.ts +1 -1
- package/package.json +4 -4
package/CHANGELOG.json
CHANGED
|
@@ -2,7 +2,49 @@
|
|
|
2
2
|
"name": "@lage-run/scheduler",
|
|
3
3
|
"entries": [
|
|
4
4
|
{
|
|
5
|
-
"date": "
|
|
5
|
+
"date": "Wed, 15 Feb 2023 16:46:37 GMT",
|
|
6
|
+
"tag": "@lage-run/scheduler_v0.8.4",
|
|
7
|
+
"version": "0.8.4",
|
|
8
|
+
"comments": {
|
|
9
|
+
"patch": [
|
|
10
|
+
{
|
|
11
|
+
"author": "beachball",
|
|
12
|
+
"package": "@lage-run/scheduler",
|
|
13
|
+
"comment": "Bump @lage-run/target-graph to v0.6.2",
|
|
14
|
+
"commit": "d66a3b4811f36290a0499d9199948c84c8049728"
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"author": "beachball",
|
|
18
|
+
"package": "@lage-run/scheduler",
|
|
19
|
+
"comment": "Bump @lage-run/cache to v0.2.4",
|
|
20
|
+
"commit": "d66a3b4811f36290a0499d9199948c84c8049728"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"author": "beachball",
|
|
24
|
+
"package": "@lage-run/scheduler",
|
|
25
|
+
"comment": "Bump @lage-run/scheduler-types to v0.3.1",
|
|
26
|
+
"commit": "d66a3b4811f36290a0499d9199948c84c8049728"
|
|
27
|
+
}
|
|
28
|
+
]
|
|
29
|
+
}
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"date": "Tue, 07 Feb 2023 23:52:48 GMT",
|
|
33
|
+
"tag": "@lage-run/scheduler_v0.8.3",
|
|
34
|
+
"version": "0.8.3",
|
|
35
|
+
"comments": {
|
|
36
|
+
"patch": [
|
|
37
|
+
{
|
|
38
|
+
"author": "kchau@microsoft.com",
|
|
39
|
+
"package": "@lage-run/scheduler",
|
|
40
|
+
"commit": "d7bf00acf2e7bda7d3e3478b6ef60db0d32ba243",
|
|
41
|
+
"comment": "migrating to V2"
|
|
42
|
+
}
|
|
43
|
+
]
|
|
44
|
+
}
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"date": "Tue, 31 Jan 2023 23:54:49 GMT",
|
|
6
48
|
"tag": "@lage-run/scheduler_v0.8.2",
|
|
7
49
|
"version": "0.8.2",
|
|
8
50
|
"comments": {
|
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,30 @@
|
|
|
1
1
|
# Change Log - @lage-run/scheduler
|
|
2
2
|
|
|
3
|
-
This log was last generated on
|
|
3
|
+
This log was last generated on Wed, 15 Feb 2023 16:46:37 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
+
## 0.8.4
|
|
8
|
+
|
|
9
|
+
Wed, 15 Feb 2023 16:46:37 GMT
|
|
10
|
+
|
|
11
|
+
### Patches
|
|
12
|
+
|
|
13
|
+
- Bump @lage-run/target-graph to v0.6.2
|
|
14
|
+
- Bump @lage-run/cache to v0.2.4
|
|
15
|
+
- Bump @lage-run/scheduler-types to v0.3.1
|
|
16
|
+
|
|
17
|
+
## 0.8.3
|
|
18
|
+
|
|
19
|
+
Tue, 07 Feb 2023 23:52:48 GMT
|
|
20
|
+
|
|
21
|
+
### Patches
|
|
22
|
+
|
|
23
|
+
- migrating to V2 (kchau@microsoft.com)
|
|
24
|
+
|
|
7
25
|
## 0.8.2
|
|
8
26
|
|
|
9
|
-
Tue, 31 Jan 2023 23:54:
|
|
27
|
+
Tue, 31 Jan 2023 23:54:49 GMT
|
|
10
28
|
|
|
11
29
|
### Patches
|
|
12
30
|
|
package/lib/SimpleScheduler.js
CHANGED
|
@@ -252,8 +252,8 @@ async function generateTargetRunPromise(target) {
|
|
|
252
252
|
} else {
|
|
253
253
|
target.onSkipped();
|
|
254
254
|
}
|
|
255
|
-
} catch (
|
|
256
|
-
runError =
|
|
255
|
+
} catch (e) {
|
|
256
|
+
runError = e;
|
|
257
257
|
}
|
|
258
258
|
}while (this.rerunTargets.has(target.target.id))
|
|
259
259
|
// if a continue option is set, this merely records what errors have been encountered
|
package/lib/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export { NpmScriptRunner } from "./runners/NpmScriptRunner.js";
|
|
2
2
|
export { SimpleScheduler } from "./SimpleScheduler.js";
|
|
3
|
-
export { TargetRunnerPicker } from "./runners/TargetRunnerPicker.js";
|
|
3
|
+
export { TargetRunnerPicker, type TargetRunnerPickerOptions } from "./runners/TargetRunnerPicker.js";
|
|
4
4
|
export { WorkerRunner } from "./runners/WorkerRunner.js";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lage-run/scheduler",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.4",
|
|
4
4
|
"description": "Scheduler for Lage",
|
|
5
5
|
"repository": {
|
|
6
6
|
"url": "https://github.com/microsoft/lage"
|
|
@@ -15,13 +15,13 @@
|
|
|
15
15
|
"lint": "monorepo-scripts lint"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@lage-run/target-graph": "^0.6.
|
|
18
|
+
"@lage-run/target-graph": "^0.6.2",
|
|
19
19
|
"@lage-run/logger": "^1.2.2",
|
|
20
|
-
"@lage-run/cache": "^0.2.
|
|
20
|
+
"@lage-run/cache": "^0.2.4",
|
|
21
21
|
"@lage-run/worker-threads-pool": "^0.5.0"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
|
-
"@lage-run/scheduler-types": "^0.3.
|
|
24
|
+
"@lage-run/scheduler-types": "^0.3.1",
|
|
25
25
|
"monorepo-scripts": "*"
|
|
26
26
|
},
|
|
27
27
|
"publishConfig": {
|