israeli-banks-actual-budget-importer 1.5.0 → 1.5.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## [1.5.1](https://github.com/tomerh2001/israeli-banks-actual-budget-importer/compare/v1.5.0...v1.5.1) (2025-05-28)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * comment out executablePath in scraper configuration ([6f9ac7d](https://github.com/tomerh2001/israeli-banks-actual-budget-importer/commit/6f9ac7dc478cf06edebc90a003fb43d6083717b5))
7
+
1
8
  # [1.5.0](https://github.com/tomerh2001/israeli-banks-actual-budget-importer/compare/v1.4.0...v1.5.0) (2025-05-24)
2
9
 
3
10
 
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.5.0",
2
+ "version": "1.5.1",
3
3
  "name": "israeli-banks-actual-budget-importer",
4
4
  "module": "index.ts",
5
5
  "type": "module",
package/src/utils.ts CHANGED
@@ -23,7 +23,7 @@ export async function scrapeAndImportTransactions({companyId, bank}: ScrapeTrans
23
23
  const scraper = createScraper({
24
24
  companyId,
25
25
  startDate: moment().subtract(6, 'month').toDate(),
26
- executablePath: '/opt/homebrew/bin/chromium',
26
+ // ExecutablePath: '/opt/homebrew/bin/chromium',
27
27
  args: ['--user-data-dir=./chrome-data'],
28
28
  additionalTransactionInformation: true,
29
29
  verbose: process.env?.VERBOSE === 'true',