Skip to content

Commit

Permalink
Update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
nazarhussain committed Jan 10, 2025
1 parent fb56232 commit ec0ff4b
Show file tree
Hide file tree
Showing 3 changed files with 344 additions and 209 deletions.
18 changes: 7 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@
"@eslint/js": "^9.15.0",
"@types/node": "^22.10.2",
"@types/yargs": "^17.0.33",
"chai": "^4.5.0",
"dotenv": "^10.0.0",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
Expand All @@ -56,19 +55,16 @@
"vitest-in-process-pool": "^1.0.0"
},
"dependencies": {
"@actions/cache": "^1.0.7",
"@actions/github": "^5.0.0",
"@vitest/runner": "^2.1.6",
"ajv": "^8.6.0",
"@actions/cache": "^4.0.0",
"@actions/github": "^6.0.0",
"@vitest/runner": "^2.1.8",
"ajv": "^8.17.1",
"aws-sdk": "^2.932.0",
"csv-parse": "^4.16.0",
"csv-stringify": "^5.6.2",
"glob": "^10.4.5",
"csv-parse": "^5.6.0",
"csv-stringify": "^6.5.2",
"glob": "^11.0.1",
"log-symbols": "^7.0.0",
"yargs": "^17.7.2",
"cli-table3": "^0.6.5"
},
"resolutions": {
"lru-cache": "10.4.3"
}
}
4 changes: 2 additions & 2 deletions src/utils/file.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import fs from "node:fs";
import path from "node:path";
import {glob} from "glob";
import csvParse from "csv-parse/lib/sync.js";
import csvStringify from "csv-stringify/lib/sync.js";
import {parse as csvParse} from "csv-parse/sync";
import {stringify as csvStringify} from "csv-stringify/sync";
import {FileCollectionOptions} from "../types.js";

type CsvMetadata = Record<string, string>;
Expand Down
Loading

0 comments on commit ec0ff4b

Please sign in to comment.