Skip to content

Commit 5c84990

Browse files
committed
Fix tests and yarn.lock
1 parent f78d5fe commit 5c84990

File tree

3 files changed

+12100
-6
lines changed

3 files changed

+12100
-6
lines changed

package.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,13 @@
3232
},
3333
"dependencies": {
3434
"papaparse": "5.x",
35-
"ramda": "^0.28.0"
35+
"ramda": "0.28.0"
3636
},
3737
"devDependencies": {
38-
"@types/jest": "27.4.1",
38+
"@types/jest": "28.1.6",
3939
"@types/node": "17.0.25",
4040
"@types/papaparse": "5.x",
41-
"@types/ramda": "0.28.11",
41+
"@types/ramda": "0.28.15",
4242
"@types/react": "^17.0.0",
4343
"@types/react-dom": "^17.0.0",
4444
"jest-coverage-badges": "^1.1.2",
@@ -51,7 +51,8 @@
5151
"react-dom": "^17.0.0",
5252
"react-scripts": "^4.x",
5353
"source-map-loader": "^3.0.1",
54-
"ts-jest": "^27.x.x",
54+
"ts-jest": "26.x",
55+
"jest": "26.6.0",
5556
"typescript": "4.x"
5657
}
5758
}

src/csv-extractor.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { parse as convertFromCSV, ParseConfig } from "papaparse";
2-
import lensPath from "ramda/src/lensPath";
3-
import over from "ramda/src/over";
2+
import lensPath from "ramda/src/lensPath.js";
3+
import over from "ramda/src/over.js";
44

55
type PapaString = string | null | number;
66

0 commit comments

Comments
 (0)