Release 9.0.0 (#12075)

* Release 9.0.0

* Add missing entry
This commit is contained in:
Michal Kinas
2026-07-20 13:54:51 +02:00
committed by GitHub
parent d25038dc59
commit 3496363b8e
13 changed files with 170 additions and 15 deletions
+2 -2
View File
@@ -98,8 +98,8 @@ Options:
const packageDir = path.dirname(packagePath);
// Use spawnSync with array arguments for safer command execution (prevents shell injection)
// Cross-platform: npm is available on PATH on all platforms (Windows, macOS, Linux)
const result = spawnSync('npm', ['audit', '--json', '--prod'], {
// Cross-platform: pnpm is available on PATH on all platforms (Windows, macOS, Linux)
const result = spawnSync('pnpm', ['audit', '--json', '--prod'], {
cwd: packageDir,
encoding: 'utf-8',
// shell: false is the default and more secure (no shell interpretation)