agent-claw: automated task changes
This commit is contained in:
34
cdk/node_modules/aws-cdk-lib/aws-lambda-nodejs/lib/package-manager.d.ts
generated
vendored
Normal file
34
cdk/node_modules/aws-cdk-lib/aws-lambda-nodejs/lib/package-manager.d.ts
generated
vendored
Normal file
@@ -0,0 +1,34 @@
|
||||
import { LogLevel } from './types';
|
||||
interface PackageManagerProps {
|
||||
readonly lockFile: string;
|
||||
readonly installCommand: string[];
|
||||
readonly runCommand: string[];
|
||||
readonly argsSeparator?: string;
|
||||
}
|
||||
export declare enum LockFile {
|
||||
NPM = "package-lock.json",
|
||||
YARN = "yarn.lock",
|
||||
BUN = "bun.lockb",
|
||||
BUN_LOCK = "bun.lock",
|
||||
PNPM = "pnpm-lock.yaml"
|
||||
}
|
||||
/**
|
||||
* A node package manager
|
||||
*/
|
||||
export declare class PackageManager {
|
||||
/**
|
||||
* Use a lock file path to determine the package manager to use. Optionally, specify a log level to
|
||||
* control its verbosity.
|
||||
* @param lockFilePath Path of the lock file
|
||||
* @param logLevel optional log level @default LogLevel.INFO
|
||||
* @returns the right PackageManager for that lock file
|
||||
*/
|
||||
static fromLockFile(lockFilePath: string, logLevel?: LogLevel): PackageManager;
|
||||
readonly lockFile: string;
|
||||
readonly installCommand: string[];
|
||||
readonly runCommand: string[];
|
||||
readonly argsSeparator?: string;
|
||||
constructor(props: PackageManagerProps);
|
||||
runBinCommand(bin: string): string[];
|
||||
}
|
||||
export {};
|
||||
Reference in New Issue
Block a user