Skip to content

Commit 91c3f6b

Browse files
committed
fix: Updated packages to latest version
1 parent e606e95 commit 91c3f6b

9 files changed

Lines changed: 1874 additions & 1470 deletions

File tree

.DS_Store

6 KB
Binary file not shown.
Lines changed: 328 additions & 328 deletions
Large diffs are not rendered by default.

.yarnrc.yml

100644100755
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
nodeLinker: node-modules
22

3-
yarnPath: .yarn/releases/yarn-4.9.2.cjs
3+
yarnPath: .yarn/releases/yarn-4.12.0.cjs

package.json

100644100755
Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -12,27 +12,27 @@
1212
"@semantic-release/changelog": "^6.0.3",
1313
"@semantic-release/commit-analyzer": "^13.0.1",
1414
"@semantic-release/git": "^10.0.1",
15-
"@semantic-release/github": "^11.0.3",
16-
"@semantic-release/npm": "^12.0.1",
17-
"@semantic-release/release-notes-generator": "^14.0.3",
18-
"@types/lodash": "^4.17.17",
19-
"@types/papaparse": "^5.3.16",
15+
"@semantic-release/github": "^12.0.2",
16+
"@semantic-release/npm": "^13.1.2",
17+
"@semantic-release/release-notes-generator": "^14.1.0",
18+
"@types/lodash": "^4.17.21",
19+
"@types/papaparse": "^5.5.0",
2020
"bun-types": "latest",
2121
"papaparse": "^5.5.3",
22-
"semantic-release": "^24.2.5",
23-
"typescript": "^5.8.3",
24-
"xo": "^1.1.0"
22+
"semantic-release": "^25.0.2",
23+
"typescript": "^5.9.3",
24+
"xo": "^1.2.3"
2525
},
26-
"packageManager": "yarn@4.9.2",
26+
"packageManager": "yarn@4.12.0",
2727
"dependencies": {
28-
"@actual-app/api": "^25.6.1",
29-
"cronstrue": "^2.61.0",
30-
"israeli-bank-scrapers": "^6.1.3",
28+
"@actual-app/api": "^25.11.0",
29+
"cronstrue": "^3.9.0",
30+
"israeli-bank-scrapers": "^6.2.5",
3131
"lodash": "^4.17.21",
3232
"moment": "^2.30.1",
3333
"mute-stdout": "^2.0.0",
34-
"node-cron": "^4.1.0",
35-
"p-queue": "^8.1.0",
36-
"tsx": "^4.19.4"
34+
"node-cron": "^4.2.1",
35+
"p-queue": "^9.0.1",
36+
"tsx": "^4.20.6"
3737
}
3838
}

src/config.d.ts

100644100755
Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,7 @@ export type ConfigActualBudget = {
1616
password: string;
1717
};
1818

19-
export type ConfigBanks = Partial<{
20-
[key in CompanyTypes]: ConfigBank;
21-
}>;
19+
export type ConfigBanks = Partial<Record<CompanyTypes, ConfigBank>>;
2220

2321
export type ConfigBank = ScraperCredentials & {
2422
actualAccountId: string;

src/index.ts

100644100755
Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
/* eslint-disable unicorn/no-process-exit */
33

44
/* eslint-disable no-await-in-loop */
5-
/* eslint-disable n/file-extension-in-import */
65

76
import process from 'node:process';
87
import {type CompanyTypes} from 'israeli-bank-scrapers';

src/utils.d.ts

100644100755
File mode changed.

src/utils.ts

100644100755
Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@
22
/* eslint-disable @typescript-eslint/naming-convention */
33
/* eslint-disable @typescript-eslint/no-unsafe-call */
44

5-
/* eslint-disable import/extensions */
6-
/* eslint-disable n/file-extension-in-import */
7-
85
import process from 'node:process';
96
import {createScraper, type ScraperCredentials} from 'israeli-bank-scrapers';
107
import _ from 'lodash';

0 commit comments

Comments
 (0)