@lage-run/reporters 0.2.13 → 0.2.14

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 CHANGED
@@ -2,7 +2,28 @@
2
2
  "name": "@lage-run/reporters",
3
3
  "entries": [
4
4
  {
5
- "date": "Sat, 01 Oct 2022 16:21:27 GMT",
5
+ "date": "Mon, 03 Oct 2022 00:06:43 GMT",
6
+ "tag": "@lage-run/reporters_v0.2.14",
7
+ "version": "0.2.14",
8
+ "comments": {
9
+ "patch": [
10
+ {
11
+ "author": "ken@gizzar.com",
12
+ "package": "@lage-run/reporters",
13
+ "commit": "49254d0cf616602f77fd3a779b060f1adbaa2c72",
14
+ "comment": "factoring out scheduler types to a new package"
15
+ },
16
+ {
17
+ "author": "beachball",
18
+ "package": "@lage-run/reporters",
19
+ "comment": "Bump @lage-run/scheduler-types to v0.1.1",
20
+ "commit": "49254d0cf616602f77fd3a779b060f1adbaa2c72"
21
+ }
22
+ ]
23
+ }
24
+ },
25
+ {
26
+ "date": "Sat, 01 Oct 2022 16:21:41 GMT",
6
27
  "tag": "@lage-run/reporters_v0.2.13",
7
28
  "version": "0.2.13",
8
29
  "comments": {
package/CHANGELOG.md CHANGED
@@ -1,12 +1,21 @@
1
1
  # Change Log - @lage-run/reporters
2
2
 
3
- This log was last generated on Sat, 01 Oct 2022 16:21:27 GMT and should not be manually modified.
3
+ This log was last generated on Mon, 03 Oct 2022 00:06:43 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
+ ## 0.2.14
8
+
9
+ Mon, 03 Oct 2022 00:06:43 GMT
10
+
11
+ ### Patches
12
+
13
+ - factoring out scheduler types to a new package (ken@gizzar.com)
14
+ - Bump @lage-run/scheduler-types to v0.1.1
15
+
7
16
  ## 0.2.13
8
17
 
9
- Sat, 01 Oct 2022 16:21:27 GMT
18
+ Sat, 01 Oct 2022 16:21:41 GMT
10
19
 
11
20
  ### Patches
12
21
 
@@ -1,7 +1,7 @@
1
1
  /// <reference types="node" />
2
2
  import { LogLevel } from "@lage-run/logger";
3
3
  import type { Reporter, LogEntry } from "@lage-run/logger";
4
- import type { SchedulerRunSummary } from "@lage-run/scheduler";
4
+ import type { SchedulerRunSummary } from "@lage-run/scheduler-types";
5
5
  import type { Writable } from "stream";
6
6
  export declare class AdoReporter implements Reporter {
7
7
  private options;
@@ -1,6 +1,6 @@
1
1
  /// <reference types="node" />
2
2
  import type { LogEntry, Reporter } from "@lage-run/logger";
3
- import type { SchedulerRunSummary, TargetRun } from "@lage-run/scheduler";
3
+ import type { SchedulerRunSummary, TargetRun } from "@lage-run/scheduler-types";
4
4
  import type { TargetMessageEntry, TargetStatusEntry } from "./types/TargetLogEntry";
5
5
  import type { Writable } from "stream";
6
6
  export interface ChromeTraceEventsReporterOptions {
@@ -1,4 +1,4 @@
1
- import type { SchedulerRunSummary } from "@lage-run/scheduler";
1
+ import type { SchedulerRunSummary } from "@lage-run/scheduler-types";
2
2
  import type { LogEntry, LogLevel, Reporter } from "@lage-run/logger";
3
3
  import type { TargetMessageEntry, TargetStatusEntry } from "./types/TargetLogEntry";
4
4
  export declare class JsonReporter implements Reporter {
@@ -1,7 +1,7 @@
1
1
  /// <reference types="node" />
2
2
  import { LogLevel } from "@lage-run/logger";
3
3
  import type { Reporter, LogEntry } from "@lage-run/logger";
4
- import type { SchedulerRunSummary } from "@lage-run/scheduler";
4
+ import type { SchedulerRunSummary } from "@lage-run/scheduler-types";
5
5
  import type { Writable } from "stream";
6
6
  export declare class LogReporter implements Reporter {
7
7
  private options;
@@ -1,4 +1,4 @@
1
- import type { TargetStatus } from "@lage-run/scheduler";
1
+ import type { TargetStatus } from "@lage-run/scheduler-types";
2
2
  import type { Target } from "@lage-run/target-graph";
3
3
  export interface TargetStatusEntry {
4
4
  target: Target;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lage-run/reporters",
3
- "version": "0.2.13",
3
+ "version": "0.2.14",
4
4
  "description": "Log reporters for Lage",
5
5
  "repository": {
6
6
  "url": "https://github.com/microsoft/lage"
@@ -16,7 +16,7 @@
16
16
  },
17
17
  "dependencies": {
18
18
  "@lage-run/logger": "^1.2.0",
19
- "@lage-run/scheduler": "^0.3.11",
19
+ "@lage-run/scheduler-types": "^0.1.1",
20
20
  "@lage-run/target-graph": "^0.4.1",
21
21
  "chalk": "^4.0.0",
22
22
  "ansi-regex": "^5.0.1",