Skip to content

Commit

Permalink
Upgrade nodejs to 12.19.
Browse files Browse the repository at this point in the history
  • Loading branch information
wparad committed Feb 18, 2021
1 parent b28d373 commit e5ca581
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
8 changes: 3 additions & 5 deletions jsconfig.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
{
"compilerOptions": {
"target": "ES6"
"target": "nextjs",
"module": "commonJS"
},
"exclude": [
"node_modules",
"**/node_modules/*"
]
"exclude": []
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,6 @@
},
"homepage": "https://authress.io",
"engines": {
"node": ">=11.6"
"node": ">=12.19.0"
}
}
2 changes: 1 addition & 1 deletion src/serviceClientTokenProvider.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const jwtManager = require('jsonwebtoken');
const { default: JwtSigner } = require('jose/dist/node/cjs/jwt/sign');
const { default: JwtSigner } = require('jose/jwt/sign');
const { createPrivateKey } = require('crypto');

module.exports = function(accessKey) {
Expand Down

0 comments on commit e5ca581

Please sign in to comment.