Skip to content

Commit db4db4c

Browse files
feat: Update minimum node version, and update dev dependencies. (#50)
Unit tests were failing with Jest error `SyntaxError: Unexpected token 'export'` This PR bumps minimum supported Node version to 18 and updates `jest` and `ts-jest` packages to latest in order to solve the problem.
2 parents 7a5aa8b + f5c41cb commit db4db4c

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

package.json

+7-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
{
22
"name": "@launchdarkly/openfeature-node-server",
33
"version": "1.0.0",
4+
"engines": {
5+
"node": ">=18"
6+
},
47
"description": "LaunchDarkly OpenFeature provider for node.",
58
"main": "./dist/index.js",
69
"types": "./dist/index.d.ts",
@@ -32,16 +35,16 @@
3235
"devDependencies": {
3336
"@launchdarkly/node-server-sdk": "9.x",
3437
"@openfeature/server-sdk": "^1.14.0",
35-
"@types/jest": "^27.4.1",
38+
"@types/jest": "^29.5.14",
3639
"@typescript-eslint/eslint-plugin": "^5.22.0",
3740
"@typescript-eslint/parser": "^5.22.0",
3841
"eslint": "^8.14.0",
3942
"eslint-config-airbnb-base": "^15.0.0",
4043
"eslint-config-airbnb-typescript": "^17.0.0",
4144
"eslint-plugin-import": "^2.26.0",
42-
"jest": "^27.5.1",
43-
"jest-junit": "^14.0.1",
44-
"ts-jest": "^27.1.4",
45+
"jest": "^29.7.0",
46+
"jest-junit": "^16.0.0",
47+
"ts-jest": "^29.2.6",
4548
"typedoc": "^0.25.13",
4649
"typescript": "^4.7.4"
4750
}

0 commit comments

Comments
 (0)