-
Notifications
You must be signed in to change notification settings - Fork 41
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
Enforce minimum npm
and node
version
#971
Conversation
9888baf
to
bdb7b8f
Compare
Thanks @anders-kiaer this was much needed |
It breaks storybook, defining host in storybook script works ("storybook": "start-storybook -p 6006 -h localhost") |
Works with node version 16 |
bdb7b8f
to
90c33db
Compare
Perhaps I should also remove |
Codecov Report
@@ Coverage Diff @@
## master #971 +/- ##
=======================================
Coverage 44.98% 44.98%
=======================================
Files 115 115
Lines 3621 3621
Branches 675 675
=======================================
Hits 1629 1629
Misses 1969 1969
Partials 23 23 📣 Codecov can now indicate which changes are the most critical in Pull Requests. Learn more |
The comitted
./react/package-lock.json
is switching betweenlockFileVersion
1 and 2 (depending on which PR author the commits come from).We should as a project stick to one version. Since
lockFileVersion
2 has been around sincenpm == 7
(node 16
) it should be safe to require this version.Something is not perfect with the current commited lock file in
master
(dependabot complains about not being able to read it). Hopefully this PR fixes that.Note that an unmaintained
devDependency
needs to be removed in order to create a consistentpackage.json
file, see #972.Closes #877 and closes #640.