agent-claw: automated task changes
This commit is contained in:
15
cdk/node_modules/aws-cdk/lib/commands/init/package-manager.d.ts
generated
vendored
Normal file
15
cdk/node_modules/aws-cdk/lib/commands/init/package-manager.d.ts
generated
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
export declare const JS_PACKAGE_MANAGERS: readonly [{
|
||||
readonly name: "npm";
|
||||
readonly commandPrefix: "npm run";
|
||||
}, {
|
||||
readonly name: "yarn";
|
||||
readonly commandPrefix: "yarn";
|
||||
}, {
|
||||
readonly name: "pnpm";
|
||||
readonly commandPrefix: "pnpm";
|
||||
}, {
|
||||
readonly name: "bun";
|
||||
readonly commandPrefix: "bun run";
|
||||
}];
|
||||
export type JsPackageManager = (typeof JS_PACKAGE_MANAGERS)[number]['name'];
|
||||
export declare const getPmCmdPrefix: (packageManager: JsPackageManager) => string;
|
||||
Reference in New Issue
Block a user