fix(core): Fix all dependency versions for backend packages (no-changelog) (#7745)

Once the packages are published to NPM, they don't have the
`pnpm-lock.yaml` to fix dependency versions. Which means that any
dependency with `^` gets auto-upgrade to the latest matching minor,
which can cause issues like
[this](https://github.com/node-cache-manager/node-cache-manager/issues/611).
This commit is contained in:
कारतोफ्फेलस्क्रिप्ट™
2023-11-17 13:49:18 +01:00
committed by GitHub
parent fc60e9a809
commit db094f2d7e
6 changed files with 390 additions and 552 deletions

View File

@@ -20,6 +20,6 @@
"dist/**/*"
],
"dependencies": {
"axios": "^0.21.1"
"axios": "0.21.4"
}
}