Skip to content

Commit 5550c4b

Browse files
Move cics plugin to lts-incremental
Signed-off-by: Matthew Wilson <[email protected]>
1 parent e200149 commit 5550c4b

File tree

4 files changed

+5
-6
lines changed

4 files changed

+5
-6
lines changed

__tests__/api/BundlePush/BundlePusher.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
import { BundlePusher } from "../../../src/api/BundlePush/BundlePusher";
1313
import { IHandlerParameters, ImperativeError, IImperativeError, IProfile, Session } from "@brightside/imperative";
14-
import * as cmci from "@zowe/cics";
14+
import * as cmci from "@brightside/cics";
1515
import * as PushBundleDefinition from "../../../src/cli/push/bundle/PushBundle.definition";
1616
import * as fse from "fs-extra";
1717
import * as fs from "fs";

docs/pages/cdp/cdp-Installing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ toc: false
3939
4. Install the cics plugin:
4040

4141
```console
42-
zowe plugins install @zowe/cics
42+
zowe plugins install @brightside/cics
4343
```
4444

4545
5. Verify the plug-ins are installed:

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,11 @@
3232
},
3333
"dependencies": {
3434
"fast-xml-parser": "^3.12.16",
35-
"@zowe/cics": "^2.0.1"
35+
"@brightside/cics": "^1.0.1"
3636
},
3737
"devDependencies": {
3838
"@brightside/core": "^2.28.1",
3939
"@brightside/imperative": "^2.4.2",
40-
"@zowe/cics": "^2.0.1",
4140
"@types/fs-extra": "^5.0.5",
4241
"@types/jest": "^22.2.3",
4342
"@types/node": "^8.0.28",

src/api/BundlePush/BundlePusher.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
import { IHandlerParameters, AbstractSession, ITaskWithStatus, TaskStage, TaskProgress, Logger, IProfile, Session } from "@brightside/imperative";
1515
import { List, ZosmfSession, SshSession, Shell, Upload, IUploadOptions, ZosFilesAttributes, Create } from "@brightside/core";
16-
import { getResource, IResourceParms } from "@zowe/cics";
16+
import { getResource, IResourceParms } from "@brightside/cics";
1717
import { BundleDeployer } from "../BundleDeploy/BundleDeployer";
1818
import { Bundle } from "../BundleContent/Bundle";
1919
import { SubtaskWithStatus } from "./SubtaskWithStatus";
@@ -289,7 +289,7 @@ export class BundlePusher {
289289
return undefined;
290290
}
291291

292-
// At time of writing, the CicsSession object in the @zowe/cics project isn't
292+
// At time of writing, the CicsSession object in the @brightside/cics project isn't
293293
// accessible, so the following code is copied out of CicsSession.createBasicCicsSession().
294294
try {
295295
return new Session({

0 commit comments

Comments
 (0)