@zowe/cli 7.7.0 → 7.8.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zowe/cli",
3
- "version": "7.7.0",
3
+ "version": "7.8.0",
4
4
  "description": "Zowe CLI is a command line interface (CLI) that provides a simple and streamlined way to interact with IBM z/OS.",
5
5
  "author": "Zowe",
6
6
  "license": "EPL-2.0",
@@ -42,7 +42,6 @@
42
42
  "main": "lib/index.js",
43
43
  "typings": "lib/index.d.ts",
44
44
  "scripts": {
45
- "prepublishOnly": "echo Look up for the output of prepublishOnly",
46
45
  "preinstall": "node ./scripts/preinstall",
47
46
  "postinstall": "node ./scripts/validatePlugins && node ./scripts/printSuccessMessage",
48
47
  "build": "tsc --pretty",
@@ -53,21 +52,23 @@
53
52
  "lint:tests": "eslint \"**/__tests__/**/*.ts\"",
54
53
  "circularDependencyCheck": "madge -c lib",
55
54
  "typedoc": "typedoc --options ./typedoc.json ./src/",
56
- "typedocSpecifySrc": "typedoc --options ./typedoc.json"
55
+ "typedocSpecifySrc": "typedoc --options ./typedoc.json",
56
+ "prepublishOnly": "bash ../../scripts/bundleDaemon.sh && bash ../../scripts/bundleKeytar.sh",
57
+ "preshrinkwrap": "node ../../scripts/rewriteShrinkwrap.js"
57
58
  },
58
59
  "dependencies": {
59
- "@zowe/core-for-zowe-sdk": "7.7.0",
60
- "@zowe/imperative": "5.6.0",
60
+ "@zowe/core-for-zowe-sdk": "7.8.0",
61
+ "@zowe/imperative": "5.7.0",
61
62
  "@zowe/perf-timing": "1.0.7",
62
- "@zowe/provisioning-for-zowe-sdk": "7.7.0",
63
- "@zowe/zos-console-for-zowe-sdk": "7.7.0",
64
- "@zowe/zos-files-for-zowe-sdk": "7.7.0",
65
- "@zowe/zos-jobs-for-zowe-sdk": "7.7.0",
66
- "@zowe/zos-logs-for-zowe-sdk": "7.7.0",
67
- "@zowe/zos-tso-for-zowe-sdk": "7.7.0",
68
- "@zowe/zos-uss-for-zowe-sdk": "7.7.0",
69
- "@zowe/zos-workflows-for-zowe-sdk": "7.7.0",
70
- "@zowe/zosmf-for-zowe-sdk": "7.7.0",
63
+ "@zowe/provisioning-for-zowe-sdk": "7.8.0",
64
+ "@zowe/zos-console-for-zowe-sdk": "7.8.0",
65
+ "@zowe/zos-files-for-zowe-sdk": "7.8.0",
66
+ "@zowe/zos-jobs-for-zowe-sdk": "7.8.0",
67
+ "@zowe/zos-logs-for-zowe-sdk": "7.8.0",
68
+ "@zowe/zos-tso-for-zowe-sdk": "7.8.0",
69
+ "@zowe/zos-uss-for-zowe-sdk": "7.8.0",
70
+ "@zowe/zos-workflows-for-zowe-sdk": "7.8.0",
71
+ "@zowe/zosmf-for-zowe-sdk": "7.8.0",
71
72
  "find-process": "1.4.7",
72
73
  "get-stream": "6.0.1",
73
74
  "lodash": "4.17.21",
@@ -80,9 +81,9 @@
80
81
  "@types/node": "^14.18.28",
81
82
  "@types/tar": "^6.1.2",
82
83
  "@types/which": "^2.0.1",
83
- "@zowe/cli-test-utils": "7.7.0",
84
+ "@zowe/cli-test-utils": "7.8.0",
84
85
  "comment-json": "^4.1.0",
85
- "eslint": "^7.32.0",
86
+ "eslint": "^8.22.0",
86
87
  "js-yaml": "^4.1.0",
87
88
  "madge": "^4.0.1",
88
89
  "rimraf": "^2.6.3",
@@ -1,21 +0,0 @@
1
- /*
2
- * This program and the accompanying materials are made available under the terms of the
3
- * Eclipse Public License v2.0 which accompanies this distribution, and is available at
4
- * https://www.eclipse.org/legal/epl-v20.html
5
- *
6
- * SPDX-License-Identifier: EPL-2.0
7
- *
8
- * Copyright Contributors to the Zowe Project.
9
- *
10
- */
11
-
12
- const fs = require("fs");
13
- const rootShrinkwrapFile = __dirname + "/../../../npm-shrinkwrap.json";
14
- const cliShrinkwrapFile = __dirname + "/../npm-shrinkwrap.json";
15
- const shrinkwrap = JSON.parse(fs.readFileSync(rootShrinkwrapFile, "utf-8"));
16
- for (const [k, v] of Object.entries(shrinkwrap.packages)) {
17
- if (v.link) {
18
- delete shrinkwrap.packages[k];
19
- }
20
- }
21
- fs.writeFileSync(cliShrinkwrapFile, JSON.stringify(shrinkwrap, null, 2));