Skip to content

Commit

Permalink
build: follow Jest node engines (#2478)
Browse files Browse the repository at this point in the history
BREAKING CHANGE
`ts-jest` now uses the same node engines like Jest. This change can cause installation issue for users who install `ts-jest` with unsupported node versions. It is recommended to use Jest supported node engines, see https://github.com/facebook/jest/blob/master/package.json#L146
  • Loading branch information
ahnpnl committed Mar 25, 2021
1 parent 3bcf2b9 commit 1fecf7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -138,6 +138,6 @@
]
},
"engines": {
"node": ">= 10"
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
}

0 comments on commit 1fecf7f

Please sign in to comment.