-
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
Upgrade all dependencies + add TS-Reset #19
base: 1.x
Are you sure you want to change the base?
Conversation
…bally available This is also recommended by TS-Reset itself, as this may or may not interfere badly when used in third-party code bases that don’t even want to use TS-Reset.
@@ -1,2 +1,4 @@ | |||
/_init/**/node_modules | |||
/_init/**/pnpm-lock.yaml |
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.
We shouldn't need that, as the deploy step rebuilds the project without installing it.
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 purely for our own maintenance sakes, as it seems way easier and more intuitive to just cd
into each starter type and type pnpm update
to bump the versions accordingly.
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 am not super happy with adding these, as they are not really required and might hide issues.
If you need a more comfortable way to update the deps, you should rather use something like https://www.npmjs.com/package/npm-check-updates instead.
cwd: sourceDir, | ||
dot: true, | ||
nodir: true, | ||
ignore: [ |
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.
Here as well: we should not need this, as there is no node_modules
in this directory.
No description provided.