Skip to content

Commit a94c6d0

Browse files
committed
Update deps.
1 parent 4f96449 commit a94c6d0

File tree

58 files changed

+1748
-1911
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+1748
-1911
lines changed

examples/angular/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@
1919
"zone.js": "~0.11.8"
2020
},
2121
"devDependencies": {
22-
"@babel/core": "^7.27.1",
22+
"@babel/core": "^7.27.4",
2323
"@babel/plugin-proposal-decorators": "^7.27.1",
2424
"@babel/preset-env": "^7.27.2",
25-
"@babel/preset-typescript": "^7.0.0",
25+
"@babel/preset-typescript": "^7.27.1",
2626
"@jest/globals": "workspace:*",
2727
"babel-jest": "workspace:*",
2828
"babel-plugin-transform-typescript-metadata": "*",

examples/async/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "0.0.0",
44
"name": "example-async",
55
"devDependencies": {
6-
"@babel/core": "^7.27.1",
6+
"@babel/core": "^7.27.4",
77
"@babel/preset-env": "^7.27.2",
88
"babel-jest": "workspace:*",
99
"jest": "workspace:*"

examples/automatic-mocks/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "0.0.0",
44
"name": "example-automatic-mocks",
55
"devDependencies": {
6-
"@babel/core": "^7.27.1",
6+
"@babel/core": "^7.27.4",
77
"@babel/preset-env": "^7.27.2",
88
"babel-jest": "workspace:*",
99
"jest": "workspace:*"

examples/expect-extend/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
"version": "0.0.0",
44
"name": "example-expect-extend",
55
"devDependencies": {
6-
"@babel/core": "^7.27.1",
6+
"@babel/core": "^7.27.4",
77
"@babel/preset-env": "^7.27.2",
8-
"@babel/preset-typescript": "^7.0.0",
8+
"@babel/preset-typescript": "^7.27.1",
99
"@jest/globals": "workspace:*",
1010
"babel-jest": "workspace:*",
1111
"expect": "workspace:*",

examples/getting-started/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "0.0.0",
44
"name": "example-getting-started",
55
"devDependencies": {
6-
"@babel/core": "^7.27.1",
6+
"@babel/core": "^7.27.4",
77
"@babel/preset-env": "^7.27.2",
88
"babel-jest": "workspace:*",
99
"jest": "workspace:*"

examples/jquery/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "0.0.0",
44
"name": "example-jquery",
55
"devDependencies": {
6-
"@babel/core": "^7.27.1",
6+
"@babel/core": "^7.27.4",
77
"@babel/preset-env": "^7.27.2",
88
"babel-jest": "workspace:*",
99
"jest": "workspace:*",

examples/manual-mocks/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "0.0.0",
44
"name": "example-manual-mocks",
55
"devDependencies": {
6-
"@babel/core": "^7.27.1",
6+
"@babel/core": "^7.27.4",
77
"@babel/preset-env": "^7.27.2",
88
"babel-jest": "workspace:*",
99
"jest": "workspace:*"

examples/module-mock/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "0.0.0",
44
"name": "example-manual-mock",
55
"devDependencies": {
6-
"@babel/core": "^7.27.1",
6+
"@babel/core": "^7.27.4",
77
"@babel/preset-env": "^7.27.2",
88
"babel-jest": "workspace:*",
99
"jest": "workspace:*"

examples/react-native/babel.config.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@
22

33
const {createRequire} = require('module');
44

5-
const rnRequire = createRequire(require.resolve('react-native'));
6-
75
module.exports = {
8-
// RN bundles this preset, so let's load it instead of depending on it ourselves
9-
presets: [rnRequire.resolve('@react-native/babel-preset')],
6+
presets: ['@react-native/babel-preset'],
107
};

examples/react-native/package.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,15 @@
77
"test": "jest"
88
},
99
"dependencies": {
10-
"react": "18.2.0",
10+
"@react-native/babel-preset": "^0.79.2",
11+
"react": "18.3.1",
1112
"react-native": "0.76.6"
1213
},
1314
"devDependencies": {
14-
"@babel/core": "^7.27.1",
15+
"@babel/core": "^7.27.4",
1516
"@babel/preset-env": "^7.27.2",
1617
"babel-jest": "workspace:*",
1718
"jest": "workspace:*",
18-
"react-test-renderer": "18.2.0"
19+
"react-test-renderer": "18.3.1"
1920
}
2021
}

examples/react-testing-library/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
"version": "0.0.0",
44
"name": "example-react-testing-library",
55
"dependencies": {
6-
"react": "18.2.0",
7-
"react-dom": "18.2.0"
6+
"react": "18.3.1",
7+
"react-dom": "18.3.1"
88
},
99
"devDependencies": {
10-
"@babel/core": "^7.27.1",
10+
"@babel/core": "^7.27.4",
1111
"@babel/preset-env": "^7.27.2",
1212
"@babel/preset-react": "^7.27.1",
1313
"@testing-library/react": "^14.0.0",

examples/react/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
"version": "0.0.0",
44
"name": "example-react",
55
"dependencies": {
6-
"react": "18.2.0",
7-
"react-dom": "18.2.0"
6+
"react": "18.3.1",
7+
"react-dom": "18.3.1"
88
},
99
"devDependencies": {
10-
"@babel/core": "^7.27.1",
10+
"@babel/core": "^7.27.4",
1111
"@babel/preset-env": "^7.27.2",
1212
"@babel/preset-react": "^7.27.1",
1313
"babel-jest": "workspace:*",

examples/snapshot/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33
"version": "0.0.0",
44
"name": "example-snapshot",
55
"dependencies": {
6-
"react": "18.2.0"
6+
"react": "18.3.1"
77
},
88
"devDependencies": {
9-
"@babel/core": "^7.27.1",
9+
"@babel/core": "^7.27.4",
1010
"@babel/preset-env": "^7.27.2",
1111
"@babel/preset-react": "^7.27.1",
1212
"babel-jest": "workspace:*",
1313
"jest": "workspace:*",
14-
"react-test-renderer": "18.2.0"
14+
"react-test-renderer": "18.3.1"
1515
},
1616
"scripts": {
1717
"test": "jest"

examples/timer/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "0.0.0",
44
"name": "example-timer",
55
"devDependencies": {
6-
"@babel/core": "^7.27.1",
6+
"@babel/core": "^7.27.4",
77
"@babel/preset-env": "^7.27.2",
88
"babel-jest": "workspace:*",
99
"jest": "workspace:*"

examples/typescript/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33
"version": "0.0.0",
44
"name": "example-typescript",
55
"dependencies": {
6-
"react": "18.2.0",
7-
"react-dom": "18.2.0",
6+
"react": "18.3.1",
7+
"react-dom": "18.3.1",
88
"typescript": "^5.0.4"
99
},
1010
"devDependencies": {
11-
"@babel/core": "^7.27.1",
11+
"@babel/core": "^7.27.4",
1212
"@babel/preset-env": "^7.27.2",
1313
"@babel/preset-react": "^7.27.1",
14-
"@babel/preset-typescript": "^7.0.0",
14+
"@babel/preset-typescript": "^7.27.1",
1515
"@jest/globals": "workspace:*",
1616
"babel-jest": "workspace:*",
1717
"jest": "workspace:*",

package.json

Lines changed: 32 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -3,49 +3,49 @@
33
"private": true,
44
"version": "0.0.0",
55
"devDependencies": {
6-
"@babel/core": "^7.27.1",
6+
"@babel/core": "^7.27.4",
77
"@babel/plugin-transform-modules-commonjs": "^7.27.1",
88
"@babel/preset-env": "^7.27.2",
99
"@babel/preset-react": "^7.27.1",
10-
"@babel/preset-typescript": "^7.0.0",
11-
"@babel/register": "^7.0.0",
12-
"@crowdin/cli": "^4.0.0",
13-
"@eslint-community/eslint-plugin-eslint-comments": "^4.4.1",
14-
"@eslint/js": "^9.21.0",
10+
"@babel/preset-typescript": "^7.27.1",
11+
"@babel/register": "^7.27.1",
12+
"@crowdin/cli": "^4.7.0",
13+
"@eslint-community/eslint-plugin-eslint-comments": "^4.5.0",
14+
"@eslint/js": "^9.28.0",
1515
"@eslint/markdown": "^6.4.0",
1616
"@jest/globals": "workspace:*",
1717
"@jest/test-utils": "workspace:*",
18-
"@lerna-lite/cli": "^3.0.0",
19-
"@lerna-lite/exec": "^4.2.0",
20-
"@lerna-lite/publish": "^3.0.0",
18+
"@lerna-lite/cli": "^4.3.0",
19+
"@lerna-lite/exec": "^4.3.0",
20+
"@lerna-lite/publish": "^4.3.0",
2121
"@microsoft/api-extractor": "^7.35.0",
2222
"@tsconfig/node18": "^18.2.4",
2323
"@types/babel__core": "^7.20.5",
2424
"@types/babel__generator": "^7.27.0",
2525
"@types/babel__template": "^7.4.4",
2626
"@types/node": "^18.14",
27-
"@types/which": "^3.0.0",
27+
"@types/which": "^3.0.4",
2828
"ansi-regex": "^5.0.1",
29-
"ansi-styles": "^5.0.0",
29+
"ansi-styles": "^5.2.0",
3030
"babel-jest": "workspace:*",
31-
"babel-loader": "^9.0.0",
32-
"camelcase": "^6.2.0",
33-
"chalk": "^4.0.0",
34-
"dedent": "^1.0.0",
35-
"eslint": "^9.21.0",
36-
"eslint-config-prettier": "^10.0.2",
37-
"eslint-import-resolver-typescript": "^4.0.0",
38-
"eslint-plugin-import-x": "^4.12.2",
39-
"eslint-plugin-jest": "^28.11.0",
40-
"eslint-plugin-jsdoc": "^50.0.0",
41-
"eslint-plugin-prettier": "^5.2.3",
31+
"babel-loader": "^9.2.1",
32+
"camelcase": "^6.3.0",
33+
"chalk": "^4.1.2",
34+
"dedent": "^1.6.0",
35+
"eslint": "^9.28.0",
36+
"eslint-config-prettier": "^10.1.5",
37+
"eslint-import-resolver-typescript": "^4.4.2",
38+
"eslint-plugin-import-x": "^4.15.0",
39+
"eslint-plugin-jest": "^28.12.0",
40+
"eslint-plugin-jsdoc": "^50.7.1",
41+
"eslint-plugin-prettier": "^5.4.1",
4242
"eslint-plugin-promise": "^7.2.1",
43-
"eslint-plugin-unicorn": "^59.0.0",
44-
"execa": "^5.0.0",
45-
"find-process": "^1.4.1",
43+
"eslint-plugin-unicorn": "^59.0.1",
44+
"execa": "^5.1.1",
45+
"find-process": "^1.4.10",
4646
"glob": "^10.3.10",
47-
"globals": "^16.0.0",
48-
"graceful-fs": "^4.2.9",
47+
"globals": "^16.2.0",
48+
"graceful-fs": "^4.2.11",
4949
"isbinaryfile": "^5.0.4",
5050
"istanbul-lib-coverage": "^3.0.0",
5151
"istanbul-lib-report": "^3.0.0",
@@ -62,13 +62,13 @@
6262
"jquery": "^3.2.1",
6363
"js-yaml": "^4.1.0",
6464
"micromatch": "^4.0.8",
65-
"mock-fs": "^5.1.2",
65+
"mock-fs": "^5.5.0",
6666
"netlify-plugin-cache": "^1.0.3",
67-
"node-notifier": "^10.0.0",
67+
"node-notifier": "^10.0.1",
6868
"p-limit": "^3.1.0",
6969
"pkg-dir": "^5.0.0",
7070
"prettier": "^3.0.3",
71-
"promise": "^8.0.2",
71+
"promise": "^8.3.0",
7272
"read-pkg": "^5.2.0",
7373
"resolve": "^1.20.0",
7474
"rimraf": "^5.0.10",
@@ -77,9 +77,9 @@
7777
"strip-json-comments": "^3.1.1",
7878
"tempy": "^1.0.1",
7979
"ts-node": "^10.5.0",
80-
"tstyche": "^4.0.0-rc.1",
80+
"tstyche": "^4.0.0",
8181
"typescript": "^5.0.4",
82-
"typescript-eslint": "^8.32.1",
82+
"typescript-eslint": "^8.33.1",
8383
"webpack": "^5.68.0",
8484
"webpack-node-externals": "^3.0.0",
8585
"which": "^4.0.0"

packages/babel-jest/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,14 @@
2424
"@types/babel__core": "^7.20.5",
2525
"babel-plugin-istanbul": "^7.0.0",
2626
"babel-preset-jest": "workspace:*",
27-
"chalk": "^4.0.0",
28-
"graceful-fs": "^4.2.9",
27+
"chalk": "^4.1.2",
28+
"graceful-fs": "^4.2.11",
2929
"slash": "^3.0.0"
3030
},
3131
"devDependencies": {
32-
"@babel/core": "^7.27.1",
32+
"@babel/core": "^7.27.4",
3333
"@jest/test-utils": "workspace:*",
34-
"@types/graceful-fs": "^4.1.3"
34+
"@types/graceful-fs": "^4.1.9"
3535
},
3636
"peerDependencies": {
3737
"@babel/core": "^7.11.0"

packages/babel-plugin-jest-hoist/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,18 +23,18 @@
2323
},
2424
"dependencies": {
2525
"@babel/template": "^7.27.2",
26-
"@babel/types": "^7.27.1",
26+
"@babel/types": "^7.27.3",
2727
"@types/babel__core": "^7.20.5"
2828
},
2929
"devDependencies": {
30-
"@babel/core": "^7.27.1",
30+
"@babel/core": "^7.27.4",
3131
"@babel/preset-react": "^7.27.1",
32-
"@babel/preset-typescript": "^7.0.0",
33-
"@prettier/sync": "^0.5.0",
32+
"@babel/preset-typescript": "^7.27.1",
33+
"@prettier/sync": "^0.5.5",
3434
"@types/babel__template": "^7.4.4",
3535
"@types/babel__traverse": "^7.20.7",
3636
"@types/node": "*",
37-
"babel-plugin-tester": "^11.0.2",
37+
"babel-plugin-tester": "^11.0.4",
3838
"prettier": "^3.0.3"
3939
},
4040
"publishConfig": {

packages/babel-preset-jest/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
},
1515
"dependencies": {
1616
"babel-plugin-jest-hoist": "workspace:*",
17-
"babel-preset-current-node-syntax": "^1.0.0"
17+
"babel-preset-current-node-syntax": "^1.1.0"
1818
},
1919
"peerDependencies": {
2020
"@babel/core": "^7.11.0"

packages/create-jest/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@
2323
},
2424
"dependencies": {
2525
"@jest/types": "workspace:*",
26-
"chalk": "^4.0.0",
26+
"chalk": "^4.1.2",
2727
"exit-x": "^0.2.2",
28-
"graceful-fs": "^4.2.9",
28+
"graceful-fs": "^4.2.11",
2929
"jest-config": "workspace:*",
3030
"jest-util": "workspace:*",
31-
"prompts": "^2.0.1"
31+
"prompts": "^2.4.2"
3232
},
3333
"engines": {
3434
"node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0"
@@ -37,7 +37,7 @@
3737
"access": "public"
3838
},
3939
"devDependencies": {
40-
"@types/graceful-fs": "^4.1.3",
41-
"@types/prompts": "^2.0.1"
40+
"@types/graceful-fs": "^4.1.9",
41+
"@types/prompts": "^2.4.9"
4242
}
4343
}

packages/diff-sequences/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"./package.json": "./package.json"
3131
},
3232
"devDependencies": {
33-
"@fast-check/jest": "^2.0.0",
33+
"@fast-check/jest": "^2.1.1",
3434
"benchmark": "^2.1.4",
3535
"diff": "^7.0.0"
3636
},

packages/expect-utils/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"@jest/get-type": "workspace:*"
2323
},
2424
"devDependencies": {
25-
"immutable": "^5.0.0",
25+
"immutable": "^5.1.2",
2626
"jest-matcher-utils": "workspace:*"
2727
},
2828
"engines": {

0 commit comments

Comments
 (0)