Skip to content

Commit

Permalink
Merge pull request #162 from zowe/fix-build
Browse files Browse the repository at this point in the history
Fix build error
  • Loading branch information
skurnevich authored Jun 3, 2024
2 parents 0bf520b + f2383d5 commit e1b7a09
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 23 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ Node version 18.12 or higher is required.

### Developing

Note: `npm run start` may succeed without errors, but `npm run make` will not. It is always advised to run `npm run make` after writing new code, or using the build automation to view errors

Run `npm install` to install dependencies

Run `npm run start` to run the application locally
Expand Down
2 changes: 1 addition & 1 deletion src/actions/InstallActions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* Copyright Contributors to the Zowe Project.
*/

import { InstallationArgs } from '../renderer/components/stages/installation/installationSlice';
import { InstallationArgs } from '../types/stateInterfaces';
import { IIpcConnectionArgs, IResponse } from '../types/interfaces';
import { FTPInstallation, CLIInstallation } from './InstallationHandler';

Expand Down
2 changes: 1 addition & 1 deletion src/actions/InstallationHandler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import { IIpcConnectionArgs, IResponse } from '../types/interfaces';
import { ProgressStore } from "../storage/ProgressStore";
import * as fs from 'fs';
import { ConfigurationStore } from '../storage/ConfigurationStore';
import { InstallationArgs } from '../renderer/components/stages/installation/installationSlice';
import { InstallationArgs } from '../types/stateInterfaces';

class Installation {

Expand Down
21 changes: 0 additions & 21 deletions src/renderer/components/stages/installation/installationSlice.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,27 +13,6 @@ import { RootState } from '../../../store';
import { setInstallationTypeStatus, getInstallationTypeStatus, setInstallationArguments } from '../progress/StageProgressStatus';
import { InstallationArgs } from '../../../../types/stateInterfaces';

export interface InstallationArgs {
installationDir: string;
workspaceDir: string;
logDir: string,
extensionDir: string,
installationType?: string;
downloadDir: string;
userUploadedPaxPath?: string;
smpeDir?: string;
javaHome: string;
nodeHome: string;
setupConfig: any;
jobName: string;
jobPrefix: string;
rbacProfile: string;
cookieId: string;
zosmfHost: string,
zosmfPort: string,
zosmfApplId: string
}

interface InstallationState {
installationArgs: InstallationArgs;
zoweVersion: string;
Expand Down

0 comments on commit e1b7a09

Please sign in to comment.