Skip to content

Commit 6fd1779

Browse files
authored
Merge pull request #146 from braintree/DTBTWEB-1160-update-deps
Update node and dependencies
2 parents 991e47f + db90a81 commit 6fd1779

37 files changed

+7383
-12344
lines changed

.eslintignore

Lines changed: 0 additions & 2 deletions
This file was deleted.

.eslintrc

Lines changed: 0 additions & 6 deletions
This file was deleted.

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v18
1+
v24

CHANGELOG.md

Lines changed: 25 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,31 @@
33
## UNRELEASED
44

55
- Move integration tests from wdio to playwright
6-
- adds dev dependencies:
7-
- @playwright/test 1.58.0
8-
- playwright 1.58.0
9-
- removes @wdio dependencies and uuid
10-
- add safari tests
6+
- removes @wdio dependencies and uuid
7+
- add safari tests
8+
- Update to node v24
9+
- Updates dependencies
10+
- braintree/browser-detection to 2.1.1
11+
- @playwright/test to 1.58.2
12+
- @types/jest to 30.0.0
13+
- @typescript-eslint/eslint-plugin to 8.56.0
14+
- browserify to 17.0.1
15+
- browserstack-local to 1.5.10
16+
- dotenv to 17.3.1
17+
- eslint to 9.39.2
18+
- eslint-config-braintree to 7.0.1
19+
- eslint-plugin-prettier to 5.5.5
20+
- express to 5.2.1
21+
- jest to 30.2.0
22+
- jest-environment-jsdom to 30.2.0
23+
- jest-util to 30.2.0
24+
- jsdoc to 4.0.5
25+
- playwright to 1.58.2
26+
- ts-jest to 29.4.6
27+
- adds dev dependencies:
28+
- @playwright/test 1.58.0
29+
- playwright 1.58.0
30+
- prettier 3.8.1
1131

1232
## 4.1.4 (2025-02-26)
1333

eslint.config.mjs

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
import { defineConfig, globalIgnores } from "eslint/config";
2+
import braintreeClientConfig from "eslint-config-braintree/client";
3+
import globals from "globals";
4+
5+
export default defineConfig([
6+
globalIgnores(["**/dist/", "**/dist-app/"]),
7+
...braintreeClientConfig.default,
8+
{
9+
languageOptions: {
10+
globals: {
11+
define: true,
12+
...globals.node,
13+
},
14+
},
15+
},
16+
]);

0 commit comments

Comments
 (0)