@lage-run/cli 0.16.7 → 0.17.1

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,70 @@
2
2
  "name": "@lage-run/cli",
3
3
  "entries": [
4
4
  {
5
- "date": "Fri, 15 Mar 2024 04:34:52 GMT",
5
+ "date": "Sun, 05 May 2024 22:55:31 GMT",
6
+ "version": "0.17.1",
7
+ "tag": "@lage-run/cli_v0.17.1",
8
+ "comments": {
9
+ "patch": [
10
+ {
11
+ "author": "beachball",
12
+ "package": "@lage-run/cli",
13
+ "comment": "Bump @lage-run/cache to v1.1.6",
14
+ "commit": "not available"
15
+ },
16
+ {
17
+ "author": "beachball",
18
+ "package": "@lage-run/cli",
19
+ "comment": "Bump @lage-run/hasher to v1.1.1",
20
+ "commit": "not available"
21
+ },
22
+ {
23
+ "author": "beachball",
24
+ "package": "@lage-run/cli",
25
+ "comment": "Bump @lage-run/scheduler to v1.2.1",
26
+ "commit": "not available"
27
+ }
28
+ ]
29
+ }
30
+ },
31
+ {
32
+ "date": "Tue, 23 Apr 2024 22:21:27 GMT",
33
+ "version": "0.17.0",
34
+ "tag": "@lage-run/cli_v0.17.0",
35
+ "comments": {
36
+ "minor": [
37
+ {
38
+ "author": "elcraig@microsoft.com",
39
+ "package": "@lage-run/cli",
40
+ "commit": "f324cccc43c32e2edf1767ccf7d7d72294421715",
41
+ "comment": "Set shell: true when spawning npm commands, due to Node security fix. Also remove custom npm client resolution logic, which should be handled based on the PATH in the shell."
42
+ },
43
+ {
44
+ "author": "beachball",
45
+ "package": "@lage-run/cli",
46
+ "comment": "Bump @lage-run/scheduler to v1.2.0",
47
+ "commit": "not available"
48
+ }
49
+ ]
50
+ }
51
+ },
52
+ {
53
+ "date": "Wed, 17 Apr 2024 23:20:47 GMT",
54
+ "version": "0.16.7",
55
+ "tag": "@lage-run/cli_v0.16.7",
56
+ "comments": {
57
+ "none": [
58
+ {
59
+ "author": "elcraig@microsoft.com",
60
+ "package": "@lage-run/cli",
61
+ "commit": "fb4fcb8419cc778210104d7d04102fc95df13d5b",
62
+ "comment": "Update formatting"
63
+ }
64
+ ]
65
+ }
66
+ },
67
+ {
68
+ "date": "Fri, 15 Mar 2024 04:35:11 GMT",
6
69
  "version": "0.16.7",
7
70
  "tag": "@lage-run/cli_v0.16.7",
8
71
  "comments": {
package/CHANGELOG.md CHANGED
@@ -1,12 +1,31 @@
1
1
  # Change Log - @lage-run/cli
2
2
 
3
- This log was last generated on Fri, 15 Mar 2024 04:34:52 GMT and should not be manually modified.
3
+ This log was last generated on Sun, 05 May 2024 22:55:31 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
+ ## 0.17.1
8
+
9
+ Sun, 05 May 2024 22:55:31 GMT
10
+
11
+ ### Patches
12
+
13
+ - Bump @lage-run/cache to v1.1.6
14
+ - Bump @lage-run/hasher to v1.1.1
15
+ - Bump @lage-run/scheduler to v1.2.1
16
+
17
+ ## 0.17.0
18
+
19
+ Tue, 23 Apr 2024 22:21:27 GMT
20
+
21
+ ### Minor changes
22
+
23
+ - Set shell: true when spawning npm commands, due to Node security fix. Also remove custom npm client resolution logic, which should be handled based on the PATH in the shell. (elcraig@microsoft.com)
24
+ - Bump @lage-run/scheduler to v1.2.0
25
+
7
26
  ## 0.16.7
8
27
 
9
- Fri, 15 Mar 2024 04:34:52 GMT
28
+ Fri, 15 Mar 2024 04:35:11 GMT
10
29
 
11
30
  ### Patches
12
31
 
@@ -99,7 +99,8 @@ async function installLage(cwd, workspaceManager, pipeline) {
99
99
  await (0, _execa.default)(workspaceManager, [
100
100
  "install"
101
101
  ], {
102
- stdio: "inherit"
102
+ stdio: "inherit",
103
+ shell: true
103
104
  });
104
105
  }
105
106
  }
@@ -11,7 +11,6 @@ Object.defineProperty(exports, "runAction", {
11
11
  const _createTargetGraph = require("./createTargetGraph.js");
12
12
  const _filterArgsForTasks = require("./filterArgsForTasks.js");
13
13
  const _filterPipelineDefinitions = require("./filterPipelineDefinitions.js");
14
- const _findnpmclient = require("@lage-run/find-npm-client");
15
14
  const _config = require("@lage-run/config");
16
15
  const _workspacetools = require("workspace-tools");
17
16
  const _initializeReporters = require("../initializeReporters.js");
@@ -82,7 +81,7 @@ async function runAction(options, command) {
82
81
  options: {
83
82
  nodeArg: options.nodeArg,
84
83
  taskArgs,
85
- npmCmd: (0, _findnpmclient.findNpmClient)(config.npmClient)
84
+ npmCmd: config.npmClient
86
85
  }
87
86
  },
88
87
  worker: {
@@ -10,7 +10,6 @@ Object.defineProperty(exports, "watchAction", {
10
10
  });
11
11
  const _createTargetGraph = require("./createTargetGraph.js");
12
12
  const _filterArgsForTasks = require("./filterArgsForTasks.js");
13
- const _findnpmclient = require("@lage-run/find-npm-client");
14
13
  const _config = require("@lage-run/config");
15
14
  const _workspacetools = require("workspace-tools");
16
15
  const _filterPipelineDefinitions = require("./filterPipelineDefinitions.js");
@@ -112,7 +111,7 @@ async function watchAction(options, command) {
112
111
  options: {
113
112
  nodeArg: options.nodeArg,
114
113
  taskArgs,
115
- npmCmd: (0, _findnpmclient.findNpmClient)(config.npmClient)
114
+ npmCmd: config.npmClient
116
115
  }
117
116
  },
118
117
  worker: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lage-run/cli",
3
- "version": "0.16.7",
3
+ "version": "0.17.1",
4
4
  "description": "Command Line Interface for Lage",
5
5
  "repository": {
6
6
  "type": "git",
@@ -20,13 +20,12 @@
20
20
  "lint": "monorepo-scripts lint"
21
21
  },
22
22
  "dependencies": {
23
- "@lage-run/cache": "^1.1.5",
23
+ "@lage-run/cache": "^1.1.6",
24
24
  "@lage-run/config": "^0.3.5",
25
- "@lage-run/find-npm-client": "^0.1.4",
26
- "@lage-run/hasher": "^1.1.0",
25
+ "@lage-run/hasher": "^1.1.1",
27
26
  "@lage-run/logger": "^1.3.0",
28
27
  "@lage-run/reporters": "^1.2.7",
29
- "@lage-run/scheduler": "^1.1.13",
28
+ "@lage-run/scheduler": "^1.2.1",
30
29
  "@lage-run/scheduler-types": "^0.3.13",
31
30
  "@lage-run/target-graph": "^0.8.9",
32
31
  "chokidar": "3.5.3",