-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update dependencies and GitHub actions #34
Conversation
with: | ||
node-version: "14" | ||
node-version: "18.17.1" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is it not enough to just use the latest minor of Node.js 18?
node-version: "18.17.1" | |
node-version: "18" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I tried, it seems that mocha, typescript and ESM module are bugged with the last version of Node 18, but it is working in the targeted 18.17.1 idk why ...
package.json
Outdated
@@ -1,6 +1,6 @@ | |||
{ | |||
"name": "kuzzle-plugin-prometheus", | |||
"version": "4.2.0", | |||
"version": "4.1.1", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why did this rollback from 4.2.0
to 4.1.1
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oops this is my bad
tsconfig.json
Outdated
"resolveJsonModule": true, | ||
"esModuleInterop": true, | ||
"experimentalDecorators": true, | ||
"allowJs": false, | ||
"skipLibCheck": true | ||
"skipLibCheck": true, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a json file, the trailing coma will not work
What does this PR do ?
Update deps, remove peer deps
How should this be manually tested?
Other changes
Boyscout