Skip to content

Commit 9d7d0a8

Browse files
ci: include yarn into build for yarn version consistency in GH
1 parent e5ab321 commit 9d7d0a8

File tree

4 files changed

+15587
-7
lines changed

4 files changed

+15587
-7
lines changed

.gitignore

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ npm-debug.log*
2424
yarn-debug.log*
2525
yarn-error.log*
2626
lerna-debug.log*
27-
yarn.lock
2827

2928
# ide's setting folder
3029
.vscode/
@@ -37,6 +36,6 @@ coverage/
3736
cypress/screenshots
3837
cypress/videos
3938

40-
# rollup
39+
# rollup
4140
stats.html
4241

packages/motif/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
],
2020
"scripts": {
2121
"start": "vite --force --config vite.dev.config.ts",
22-
"build": "npm run clean && npx -p typescript tsc && vite build --config vite.prod.config.ts",
23-
"transpile": "npx -p typescript tsc --p ./tsconfig.json --strict --watch",
22+
"build": "npm run clean && npx tsc && vite build --config vite.prod.config.ts",
23+
"transpile": "npx tsc --p ./tsconfig.json --strict --watch",
2424
"test": "jest",
2525
"test:watch": "jest --watchAll",
2626
"test:coverage": "jest --coverage --watchAll=false",
@@ -113,7 +113,7 @@
113113
"ts-jest": "^26.5.5",
114114
"ts-loader": "^8.0.15",
115115
"ts-node": "^9.1.1",
116-
"typescript": "^4.5.2",
116+
"typescript": "^4.2.4",
117117
"vite": "2.4.3",
118118
"webpack": "4.42.0",
119119
"workerloader-jest-transformer": "^0.0.2"

packages/motif/src/redux/graph/interfaces.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,14 @@ export interface IGraphSelector {
3131
graphFiltered: GraphT.GraphData,
3232
styleOptions: GraphT.StyleOptions,
3333
) => GraphT.GraphData,
34-
never
34+
any
3535
>;
3636

3737
getGraphVisibleNodeOptions: OutputSelector<
3838
[(state: any) => GraphT.GraphData],
3939
Option[],
4040
(graphVisible: GraphT.GraphData) => Option[],
41-
never
41+
any
4242
>;
4343

4444
getGraphFieldsOptions: OutputSelector<

0 commit comments

Comments
 (0)