-
Notifications
You must be signed in to change notification settings - Fork 62
Keep up with the times #102
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
Keep up with the times #102
Conversation
npm run ... from package.json
@@ -43,5 +43,5 @@ outputs: | |||
rebar3-version: | |||
description: Exact version of rebar3 that was installed | |||
runs: | |||
using: node12 | |||
using: node16 |
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.
16 is now the default, I think since Nov last year.
}, | ||
"engines": { | ||
"node": ">=14" | ||
"node": ">=16" |
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.
16 is now the default, I think since Nov last year.
@@ -19,24 +19,24 @@ | |||
}, |
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.
These were bumped to their latest. None of them appears to have broken interface.
return digitStart.test(specVersion) | ||
? `v${versionToPrepend}` | ||
: versionToPrepend | ||
let v = versionToPrepend |
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 preferred the way it was, but I couldn't get the linter and formatter to work side-by-side. It didn't seem like a very bad compromise, this change.
Just some house cleaning.