Skip to content

Commit fec3b64

Browse files
Merge pull request #238 from ManikantaMandala/fix_#233
Fix [libs/movex] fix Linting Issues Across the Movex Library #233
2 parents 3866044 + 74b1337 commit fec3b64

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

libs/movex-specs-util/project.json

+13
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,19 @@
2828
"jestConfig": "libs/movex-specs-util/jest.config.ts",
2929
"passWithNoTests": true
3030
}
31+
},
32+
"build": {
33+
"executor": "@nrwl/js:tsc",
34+
"outputs": ["{options.outputPath}"],
35+
"options": {
36+
"outputPath": "dist/libs/movex-specs-util",
37+
"tsConfig": "libs/movex-specs-util/tsconfig.lib.json",
38+
"packageJson": "libs/movex-specs-util/package.json",
39+
"main": "libs/movex-specs-util/src/index.ts",
40+
"assets": ["libs/movex-specs-util/*.md"],
41+
"updateBuildableProjectDepsInPackageJson": true,
42+
"buildableProjectDepsInPackageJsonType": "dependencies"
43+
}
3144
}
3245
},
3346
"tags": []

libs/movex/src/lib/ConnectionToMasterResources.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ import type {
99
IOEvents,
1010
MovexClient,
1111
SanitizedMovexClient,
12+
MovexClientInfo,
1213
} from 'movex-core-util';
1314
import {
1415
objectPick,
@@ -57,7 +58,7 @@ export class ConnectionToMasterResources<
5758
TState,
5859
TAction,
5960
TResourceType,
60-
{} // Fix
61+
MovexClientInfo
6162
>
6263
) {
6364
const onFwdActionHandler = (

0 commit comments

Comments
 (0)