@lage-run/cli 0.10.1 → 0.11.0
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 +16 -1
- package/CHANGELOG.md +10 -2
- package/lib/index.d.ts +6 -0
- package/package.json +1 -1
package/CHANGELOG.json
CHANGED
|
@@ -2,7 +2,22 @@
|
|
|
2
2
|
"name": "@lage-run/cli",
|
|
3
3
|
"entries": [
|
|
4
4
|
{
|
|
5
|
-
"date": "
|
|
5
|
+
"date": "Wed, 22 Mar 2023 17:26:44 GMT",
|
|
6
|
+
"tag": "@lage-run/cli_v0.11.0",
|
|
7
|
+
"version": "0.11.0",
|
|
8
|
+
"comments": {
|
|
9
|
+
"minor": [
|
|
10
|
+
{
|
|
11
|
+
"author": "elcraig@microsoft.com",
|
|
12
|
+
"package": "@lage-run/cli",
|
|
13
|
+
"commit": "fad4d8a6cb9d1204f6b83f6ab2f7f0205529df2e",
|
|
14
|
+
"comment": "Export more types used by the config"
|
|
15
|
+
}
|
|
16
|
+
]
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"date": "Tue, 14 Mar 2023 00:28:38 GMT",
|
|
6
21
|
"tag": "@lage-run/cli_v0.10.1",
|
|
7
22
|
"version": "0.10.1",
|
|
8
23
|
"comments": {
|
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,20 @@
|
|
|
1
1
|
# Change Log - @lage-run/cli
|
|
2
2
|
|
|
3
|
-
This log was last generated on
|
|
3
|
+
This log was last generated on Wed, 22 Mar 2023 17:26:44 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
+
## 0.11.0
|
|
8
|
+
|
|
9
|
+
Wed, 22 Mar 2023 17:26:44 GMT
|
|
10
|
+
|
|
11
|
+
### Minor changes
|
|
12
|
+
|
|
13
|
+
- Export more types used by the config (elcraig@microsoft.com)
|
|
14
|
+
|
|
7
15
|
## 0.10.1
|
|
8
16
|
|
|
9
|
-
Tue, 14 Mar 2023 00:28:
|
|
17
|
+
Tue, 14 Mar 2023 00:28:38 GMT
|
|
10
18
|
|
|
11
19
|
### Patches
|
|
12
20
|
|
package/lib/index.d.ts
CHANGED
|
@@ -1 +1,7 @@
|
|
|
1
|
+
export type { CacheOptions } from "./types/CacheOptions.js";
|
|
1
2
|
export type { ConfigOptions } from "./types/ConfigOptions.js";
|
|
3
|
+
export type { Priority } from "./types/Priority.js";
|
|
4
|
+
export type { PipelineDefinition } from "./types/PipelineDefinition.js";
|
|
5
|
+
export type { LoggerOptions } from "./types/LoggerOptions.js";
|
|
6
|
+
export type { TargetRunnerPickerOptions } from "@lage-run/scheduler";
|
|
7
|
+
export type { TargetConfig } from "@lage-run/target-graph";
|