Skip to content

Commit

Permalink
Pin exact dependencies
Browse files Browse the repository at this point in the history
For applications, it's considered best practices to pin exact versions of dependencies.

This change removes the semantic version range specifiers, and pins each dependency to the maximum allowed by the range specifier. This makes the implicit updates explicit. For example:

- `^1.0.0` will have been upgraded to the maximum minor version available. Equivalent to `1.0.0 <= x < 2.0.0`
- `~1.0.0` will have been upgraded to the maximum patch version available. Equivalent to `1.0.0 <= x < 1.1.0`
  • Loading branch information
JamieMagee authored and Jamie Magee committed Nov 6, 2023
1 parent 5f7b3b0 commit 1b53b88
Show file tree
Hide file tree
Showing 3 changed files with 5,429 additions and 6,051 deletions.
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
unsafe-perm = true
save-exact = true
Loading

0 comments on commit 1b53b88

Please sign in to comment.