Merge branch 'main' into improved-shell-integration

This commit is contained in:
Sander Declerck 2025-07-18 11:02:21 +02:00
commit 8ffb0191f5
No known key found for this signature in database
14 changed files with 381 additions and 12 deletions

View file

@ -6,7 +6,9 @@ export const knownAikidoTools = [
{ tool: "npm", aikidoCommand: "aikido-npm" },
{ tool: "npx", aikidoCommand: "aikido-npx" },
{ tool: "yarn", aikidoCommand: "aikido-yarn" },
// When adding a new tool here, also update the expected alias in the tests (shellIntegration.spec.js)
{ tool: "pnpm", aikidoCommand: "aikido-pnpm" },
{ tool: "pnpx", aikidoCommand: "aikido-pnpx" },
// When adding a new tool here, also update the expected alias in the tests (setup.spec.js, teardown.spec.js)
// and add the documentation for the new tool in the README.md
];