@sap/cli-core 2023.14.0 → 2023.17.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/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Command-Line Interface (CLI) Core Module.
4
4
 
5
- [![Node Version](https://img.shields.io/badge/node-16.xx.x-brightgreen)](https://nodejs.org/dist/latest-v16.x/docs/api/#) [![npm version](https://badge.fury.io/js/@sap%2Fcli-core.svg)](https://badge.fury.io/js/@sap%2Fcli-core)
5
+ [![Node Version](https://img.shields.io/badge/node-18.15.0-brightgreen)](https://nodejs.org/dist/latest-v18.x/docs/api/#) [![npm version](https://badge.fury.io/js/@sap%2Fcli-core.svg)](https://badge.fury.io/js/@sap%2Fcli-core)
6
6
 
7
7
  ## Content
8
8
 
package/package.json CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "name": "@sap/cli-core",
3
- "version": "2023.14.0",
3
+ "version": "2023.17.0",
4
4
  "description": "Command-Line Interface (CLI) Core Module",
5
5
  "license": "SEE LICENSE IN LICENSE",
6
6
  "author": "SAP SE",
7
7
  "homepage": "https://www.sap.com",
8
8
  "main": "index.js",
9
9
  "engines": {
10
- "node": "^16",
11
- "npm": "^8"
10
+ "node": "^18",
11
+ "npm": "^9"
12
12
  },
13
13
  "keywords": [
14
14
  "cli",
@@ -18,9 +18,9 @@
18
18
  "dependencies": {
19
19
  "ajv": "8.12.0",
20
20
  "axios": "1.4.0",
21
- "commander": "10.0.1",
21
+ "commander": "11.0.0",
22
22
  "config": "3.3.9",
23
- "dotenv": "16.1.3",
23
+ "dotenv": "16.3.1",
24
24
  "fs-extra": "11.1.1",
25
25
  "https": "1.0.0",
26
26
  "lodash": "4.17.21",
@@ -2,6 +2,7 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.ResultHandlerFactory = void 0;
4
4
  class ResultHandlerFactory {
5
+ static INSTANCE;
5
6
  static get() {
6
7
  return ResultHandlerFactory.INSTANCE;
7
8
  }
@@ -2,6 +2,7 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.ResultHandlerImpl = void 0;
4
4
  class ResultHandlerImpl {
5
+ data;
5
6
  setResult(data) {
6
7
  this.data = data;
7
8
  }