Skip to content

Commit a22065d

Browse files
committed
fix: drop support for node 13
1 parent 399c7b3 commit a22065d

File tree

55 files changed

+55
-71
lines changed

Some content is hidden

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

55 files changed

+55
-71
lines changed

.circleci/config.yml

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -55,20 +55,6 @@ jobs:
5555
- store_test_results:
5656
path: reports/junit
5757

58-
test-node-13:
59-
working_directory: ~/jest
60-
executor: node/default
61-
steps:
62-
- checkout
63-
- node/install:
64-
node-version: '13'
65-
install-npm: false
66-
- node/install-packages: *install
67-
- run:
68-
command: yarn test-ci-partial
69-
- store_test_results:
70-
path: reports/junit
71-
7258
test-node-14:
7359
working_directory: ~/jest
7460
executor: node/default

.github/workflows/nodejs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
strategy:
5555
fail-fast: false
5656
matrix:
57-
node-version: [10.x, 12.x, 13.x, 14.x, 15.x]
57+
node-version: [10.x, 12.x, 14.x, 15.x]
5858
os: [ubuntu-latest, macOS-latest, windows-latest]
5959
runs-on: ${{ matrix.os }}
6060

CHANGELOG.md

Lines changed: 2 additions & 0 deletions

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,6 @@
133133
"logo": "https://opencollective.com/jest/logo.txt"
134134
},
135135
"engines": {
136-
"node": ">= 10.14.2"
136+
"node": "^10.13.0 || ^12.13.0 || ^14.14.0 || >=15.0.0"
137137
}
138138
}

packages/babel-jest/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"@babel/core": "^7.0.0"
2929
},
3030
"engines": {
31-
"node": ">= 10.14.2"
31+
"node": "^10.13.0 || ^12.13.0 || ^14.14.0 || >=15.0.0"
3232
},
3333
"publishConfig": {
3434
"access": "public"

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"directory": "packages/babel-plugin-jest-hoist"
88
},
99
"engines": {
10-
"node": ">= 10.14.2"
10+
"node": "^10.13.0 || ^12.13.0 || ^14.14.0 || >=15.0.0"
1111
},
1212
"license": "MIT",
1313
"main": "build/index.js",

packages/babel-preset-jest/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"@babel/core": "^7.0.0"
1717
},
1818
"engines": {
19-
"node": ">= 10.14.2"
19+
"node": "^10.13.0 || ^12.13.0 || ^14.14.0 || >=15.0.0"
2020
},
2121
"publishConfig": {
2222
"access": "public"

packages/diff-sequences/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"diff"
1717
],
1818
"engines": {
19-
"node": ">= 10.14.2"
19+
"node": "^10.13.0 || ^12.13.0 || ^14.14.0 || >=15.0.0"
2020
},
2121
"main": "build/index.js",
2222
"types": "build/index.d.ts",

packages/eslint-config-fb-strict/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"eslint-plugin-react": "^7.1.0"
2121
},
2222
"engines": {
23-
"node": ">= 10.14.2"
23+
"node": "^10.13.0 || ^12.13.0 || ^14.14.0 || >=15.0.0"
2424
},
2525
"publishConfig": {
2626
"access": "public"

packages/expect/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"immutable": "^4.0.0-rc.12"
2525
},
2626
"engines": {
27-
"node": ">= 10.14.2"
27+
"node": "^10.13.0 || ^12.13.0 || ^14.14.0 || >=15.0.0"
2828
},
2929
"publishConfig": {
3030
"access": "public"

0 commit comments

Comments
 (0)