We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c50c6a1 commit 4546db9Copy full SHA for 4546db9
.github/workflows/test.yml
@@ -27,6 +27,8 @@ jobs:
27
node-version: ${{ matrix.node-version }}
28
- name: Install
29
run: pnpm install
30
+ - name: Build
31
+ run: pnpm build
32
- name: Lint
33
run: pnpm run lint
34
- name: Test
src/types.ts
@@ -1,7 +1,7 @@
1
export type Agent = 'npm' | 'yarn' | 'yarn@berry' | 'pnpm' | 'pnpm@6' | 'bun' | 'deno'
2
export type AgentName = 'npm' | 'yarn' | 'pnpm' | 'bun' | 'deno'
3
4
-export type AgentCommandValue = (string | number)[] | ((args?: string[]) => string[]) | null
+export type AgentCommandValue = (string | number)[] | ((args: string[]) => string[]) | null
5
6
export interface AgentCommands {
7
'agent': AgentCommandValue
0 commit comments