Update cheatsheets

This commit is contained in:
ivuorinen
2024-03-04 00:13:37 +00:00
parent d5be0a5308
commit 4fc14b09a3
10 changed files with 195 additions and 45 deletions

42
tldr/pnpm-audit Normal file
View File

@@ -0,0 +1,42 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# pnpm audit
> Scan project dependencies.
> Check for known security issues with the installed packages.
> More information: <https://pnpm.io/cli/audit>.
- Identify vulnerabilities in the project:
`pnpm audit`
- Automatically fix vulnerabilities:
`pnpm audit fix`
- Generate a security report in JSON format:
`pnpm audit --json > {{path/to/audit-report.json}}`
- Audit only [D]ev dependencies:
`pnpm audit --dev`
- Audit only [P]roduction dependencies:
`pnpm audit --prod`
- Exclude optional dependencies from the audit:
`pnpm audit --no-optional`
- Ignore registry errors during the audit process:
`pnpm audit --ignore-registry-errors`
- Filter advisories by severity (low, moderate, high, critical):
`pnpm audit --audit-level {{severity}}`