@sap/cli-core 2025.15.0 → 2025.16.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.
Files changed (3) hide show
  1. package/index.js +4 -2
  2. package/module.js +3 -1
  3. package/package.json +5 -5
package/index.js CHANGED
@@ -37,10 +37,12 @@ Object.defineProperty(exports, "__esModule", { value: true });
37
37
  exports.configureCoreModule = exports.getPackageName = exports.getName = exports.getDescription = exports.getBin = exports.getVersion = exports.AuthenticationMethod = exports.getCommands = exports.configure = exports.run = void 0;
38
38
  const dotenv = __importStar(require("dotenv"));
39
39
  const configureLoggers_1 = require("./configureLoggers");
40
- dotenv.config();
40
+ /* jscpd:ignore-start */
41
+ dotenv.config({
42
+ quiet: true, // default is false, but we want to avoid logging to the stdout
43
+ });
41
44
  (0, configureLoggers_1.configureLoggers)();
42
45
  const config_1 = require("./config");
43
- /* jscpd:ignore-start */
44
46
  const constants_1 = require("./constants");
45
47
  Object.defineProperty(exports, "AuthenticationMethod", { enumerable: true, get: function () { return constants_1.AuthenticationMethod; } });
46
48
  /* jscpd:ignore-end */
package/module.js CHANGED
@@ -37,7 +37,9 @@ Object.defineProperty(exports, "__esModule", { value: true });
37
37
  exports.configure = exports.getCommands = void 0;
38
38
  const dotenv = __importStar(require("dotenv"));
39
39
  const configureLoggers_1 = require("./configureLoggers");
40
- dotenv.config();
40
+ dotenv.config({
41
+ quiet: true, // default is false, but we want to avoid logging to the stdout
42
+ });
41
43
  (0, configureLoggers_1.configureLoggers)();
42
44
  const config_1 = require("./config");
43
45
  const constants_1 = require("./constants");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sap/cli-core",
3
- "version": "2025.15.0",
3
+ "version": "2025.16.0",
4
4
  "description": "Command-Line Interface (CLI) Core Module",
5
5
  "license": "SEE LICENSE IN LICENSE",
6
6
  "author": "SAP SE",
@@ -21,14 +21,14 @@
21
21
  "axios": "1.10.0",
22
22
  "commander": "12.1.0",
23
23
  "compare-versions": "6.1.1",
24
- "config": "4.0.0",
25
- "dotenv": "16.5.0",
26
- "form-data": "4.0.3",
24
+ "config": "4.0.1",
25
+ "dotenv": "17.2.0",
26
+ "form-data": "4.0.4",
27
27
  "fs-extra": "11.3.0",
28
28
  "https": "1.0.0",
29
29
  "https-proxy-agent": "7.0.6",
30
30
  "lodash": "4.17.21",
31
- "open": "10.1.2",
31
+ "open": "10.2.0",
32
32
  "path": "0.12.7",
33
33
  "prompts": "2.4.2",
34
34
  "qs": "6.14.0"