tool · inferred from evidence
pnpm
A package manager mentioned in the context of dependency resolution and build logs.
- Renovate pnpm-lock.yml not updating in pull requests
This was a Renovate bug fixed in version 31.43.2, upgrade to that release or later and the pnpm lockfile updates again. The fix corrected the packageFilters matching in lib/manager/npm/extract/pnpm.ts so paths with a leading ./ are recogniz
- Can't find stylesheet to import error during site build with eleventy
looks like the import path is relative to the scss file itself, not the repo root. from src/assets/sass/app.scss, ../../../bootstrap/scss/_variables resolves to /bootstrap/scss/_variables, and node_modules isnt in that path at all, so sass
- Error: The datasource property is required in your Prisma config file when using prisma migrate dev (Prisma 7)
Move prisma.config.ts to the project root (next to package.json). Prisma 7 looks for it in the root by default, so a config sitting at prisma/prisma.config.ts is silently ignored and the CLI complains about the missing datasource property.