-
Notifications
You must be signed in to change notification settings - Fork 208
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 version, deps, and include <0% formatting fix #1196
base: dev
Are you sure you want to change the base?
Conversation
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.
Thanks for this! Left some comments :)
@@ -1,4 +1,4 @@ | |||
always-auth=true | |||
registry=https://registry.npmjs.org/ | |||
@cookiemonsterteam:registry=https://npm.pkg.github.com | |||
//npm.pkg.github.com/:_authToken=${GITHUB_REGISTERY_PAT} | |||
//npm.pkg.github.com/:_authToken=${GITHUB_REGISTRY_PAT} |
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.
You can't change this without also changing the name of the key in .github/workflows/CI.yml
.
@@ -0,0 +1 @@ | |||
nodejs 16.20.2 |
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.
What is this file used for? I have never seen it
@@ -133,7 +133,7 @@ export function UpdateTimerBar() { | |||
updateChanceTotal(chanceToSpawn); | |||
l('CMTimerBarGCTime').textContent = `${Math.ceil( | |||
(Game.shimmerTypes.golden.maxTime - Game.shimmerTypes.golden.time) / Game.fps, | |||
)} ${getChanceFinal() < 0.01 ? '<' : ''}${getChanceFinal().toLocaleString('en', { | |||
)} ${getChanceFinal() < 0.01 ? '<' : ''}${(0.01).toLocaleString('en', { |
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 would prefer to not include this in this PR
I've updated the version number to match the latest, updated some dependencies, cleaned up/ignored some lint issues, and included the formatting fix from #1192. Oh, and fixed the misspelling in the env var in the npmrc.
Let me know if there's anything else I should do for now.