Browse Source

Task/add explicit @prisma/config import

It's used in `.config/prisma.ts` and is coincidentally available for the
`postinstall` to run correctly (already present in the lockfile).

However, some tools (that are not npm) might complain that it should
either be explicit or hoisted with an `.npmrc` flag.
pull/7174/head
Szymon Łągiewka 2 weeks ago
parent
commit
e0d9493eef
Failed to extract signature
  1. 1
      CHANGELOG.md
  2. 1
      package-lock.json
  3. 1
      package.json

1
CHANGELOG.md

@ -16,6 +16,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Updated the _Privacy Policy_
- Improved the language localization for Japanese (`ja`)
- Upgraded `nestjs` from version `11.1.21` to `11.1.27`
- Added explicit devDependency import of `@prisma/config`
## 3.18.0 - 2026-06-28

1
package-lock.json

@ -125,6 +125,7 @@
"@nx/storybook": "23.0.1",
"@nx/web": "23.0.1",
"@nx/workspace": "23.0.1",
"@prisma/config": "7.8.0",
"@schematics/angular": "21.2.6",
"@storybook/addon-docs": "10.1.10",
"@storybook/addon-themes": "10.1.10",

1
package.json

@ -169,6 +169,7 @@
"@nx/storybook": "23.0.1",
"@nx/web": "23.0.1",
"@nx/workspace": "23.0.1",
"@prisma/config": "7.8.0",
"@schematics/angular": "21.2.6",
"@storybook/addon-docs": "10.1.10",
"@storybook/addon-themes": "10.1.10",

Loading…
Cancel
Save