@lage-run/cli 0.16.6 → 0.16.7
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 +28 -1
- package/CHANGELOG.md +12 -2
- package/lib/commands/info/action.js +1 -1
- package/lib/commands/run/runAction.js +1 -1
- package/package.json +3 -3
package/CHANGELOG.json
CHANGED
|
@@ -2,7 +2,34 @@
|
|
|
2
2
|
"name": "@lage-run/cli",
|
|
3
3
|
"entries": [
|
|
4
4
|
{
|
|
5
|
-
"date": "
|
|
5
|
+
"date": "Fri, 15 Mar 2024 04:34:52 GMT",
|
|
6
|
+
"version": "0.16.7",
|
|
7
|
+
"tag": "@lage-run/cli_v0.16.7",
|
|
8
|
+
"comments": {
|
|
9
|
+
"patch": [
|
|
10
|
+
{
|
|
11
|
+
"author": "kchau@microsoft.com",
|
|
12
|
+
"package": "@lage-run/cli",
|
|
13
|
+
"commit": "71283d4af8888454c953e5228c97bfbb471c15ba",
|
|
14
|
+
"comment": "perf optimizations"
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"author": "beachball",
|
|
18
|
+
"package": "@lage-run/cli",
|
|
19
|
+
"comment": "Bump @lage-run/hasher to v1.1.0",
|
|
20
|
+
"commit": "not available"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"author": "beachball",
|
|
24
|
+
"package": "@lage-run/cli",
|
|
25
|
+
"comment": "Bump @lage-run/scheduler to v1.1.13",
|
|
26
|
+
"commit": "not available"
|
|
27
|
+
}
|
|
28
|
+
]
|
|
29
|
+
}
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"date": "Mon, 26 Feb 2024 16:18:50 GMT",
|
|
6
33
|
"version": "0.16.6",
|
|
7
34
|
"tag": "@lage-run/cli_v0.16.6",
|
|
8
35
|
"comments": {
|
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,22 @@
|
|
|
1
1
|
# Change Log - @lage-run/cli
|
|
2
2
|
|
|
3
|
-
This log was last generated on
|
|
3
|
+
This log was last generated on Fri, 15 Mar 2024 04:34:52 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
+
## 0.16.7
|
|
8
|
+
|
|
9
|
+
Fri, 15 Mar 2024 04:34:52 GMT
|
|
10
|
+
|
|
11
|
+
### Patches
|
|
12
|
+
|
|
13
|
+
- perf optimizations (kchau@microsoft.com)
|
|
14
|
+
- Bump @lage-run/hasher to v1.1.0
|
|
15
|
+
- Bump @lage-run/scheduler to v1.1.13
|
|
16
|
+
|
|
7
17
|
## 0.16.6
|
|
8
18
|
|
|
9
|
-
Mon, 26 Feb 2024 16:18:
|
|
19
|
+
Mon, 26 Feb 2024 16:18:50 GMT
|
|
10
20
|
|
|
11
21
|
### Patches
|
|
12
22
|
|
|
@@ -30,7 +30,7 @@ async function infoAction(options, command) {
|
|
|
30
30
|
options.reporter = options.reporter ?? "json";
|
|
31
31
|
(0, _initializeReporters.initializeReporters)(logger, options);
|
|
32
32
|
const root = (0, _workspacetools.getWorkspaceRoot)(cwd);
|
|
33
|
-
const packageInfos =
|
|
33
|
+
const packageInfos = (0, _workspacetools.getPackageInfos)(root);
|
|
34
34
|
const targetGraph = prepareAndCreateTargetGraph(config, logger, root, options, packageInfos, command);
|
|
35
35
|
const scope = prepareAndGetFilteredPackages(config, logger, root, options, packageInfos);
|
|
36
36
|
const packageTasks = processTargets(targetGraph.targets, packageInfos, config);
|
|
@@ -38,7 +38,7 @@ async function runAction(options, command) {
|
|
|
38
38
|
});
|
|
39
39
|
// Build Target Graph
|
|
40
40
|
const root = (0, _workspacetools.getWorkspaceRoot)(process.cwd());
|
|
41
|
-
const packageInfos =
|
|
41
|
+
const packageInfos = (0, _workspacetools.getPackageInfos)(root);
|
|
42
42
|
const { tasks , taskArgs } = (0, _filterArgsForTasks.filterArgsForTasks)(command.args);
|
|
43
43
|
const targetGraph = (0, _createTargetGraph.createTargetGraph)({
|
|
44
44
|
logger,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lage-run/cli",
|
|
3
|
-
"version": "0.16.
|
|
3
|
+
"version": "0.16.7",
|
|
4
4
|
"description": "Command Line Interface for Lage",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -23,10 +23,10 @@
|
|
|
23
23
|
"@lage-run/cache": "^1.1.5",
|
|
24
24
|
"@lage-run/config": "^0.3.5",
|
|
25
25
|
"@lage-run/find-npm-client": "^0.1.4",
|
|
26
|
-
"@lage-run/hasher": "^1.0
|
|
26
|
+
"@lage-run/hasher": "^1.1.0",
|
|
27
27
|
"@lage-run/logger": "^1.3.0",
|
|
28
28
|
"@lage-run/reporters": "^1.2.7",
|
|
29
|
-
"@lage-run/scheduler": "^1.1.
|
|
29
|
+
"@lage-run/scheduler": "^1.1.13",
|
|
30
30
|
"@lage-run/scheduler-types": "^0.3.13",
|
|
31
31
|
"@lage-run/target-graph": "^0.8.9",
|
|
32
32
|
"chokidar": "3.5.3",
|