TenantAtlas/apps/platform/.pnpm-store/v10/files/6f/6f3566870c9e83c905e592456a590cdbd1a52b7324377f53409e3c9d27ddd07e5e5c25949e34e66d552347a411fbd3076f1597c26ea39e27e8d466f1b20a27
Ahmed Darrazi 9f74f7a658
Some checks failed
PR Fast Feedback / fast-feedback (pull_request) Failing after 51s
feat: compress governance operator outcomes
2026-04-19 14:15:11 +02:00

19 lines
750 B
Plaintext

import { CommandInfo } from '../command';
import { CommandParser } from './command-parser';
/**
* Finds wildcards in 'npm/yarn/pnpm/bun run', 'node --run' and 'deno task'
* commands and replaces them with all matching scripts in the NodeJS and Deno
* configuration files of the current directory.
*/
export declare class ExpandWildcard implements CommandParser {
private readonly readDeno;
private readonly readPackage;
static readDeno(): any;
static readPackage(): any;
private packageScripts?;
private denoTasks?;
constructor(readDeno?: typeof ExpandWildcard.readDeno, readPackage?: typeof ExpandWildcard.readPackage);
private relevantScripts;
parse(commandInfo: CommandInfo): CommandInfo | CommandInfo[];
}