Skip to content

Commit

Permalink
test log statement
Browse files Browse the repository at this point in the history
  • Loading branch information
courtney-sims committed Oct 21, 2024
1 parent f6d8d23 commit 177b559
Show file tree
Hide file tree
Showing 8 changed files with 29,180 additions and 1 deletion.
7 changes: 7 additions & 0 deletions dist/exec.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
/// <reference types="node" />
import { exec as _childProcessExec } from "node:child_process";
export { exec } from "@actions/exec";
declare const childProcessExec: typeof _childProcessExec.__promisify__;
export declare function execShell(command: string, { silent, ...options }?: Parameters<typeof childProcessExec>[1] & {
silent?: boolean;
}): Promise<number | null>;
6 changes: 6 additions & 0 deletions dist/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
declare function installWrangler(): Promise<void>;
declare function authenticationSetup(): void;
declare function execCommands(commands: string[], cmdType: string): Promise<void>;
declare function uploadSecrets(): Promise<void>;
declare function wranglerCommands(): Promise<void>;
export { authenticationSetup, execCommands, installWrangler, uploadSecrets, wranglerCommands };
Loading

0 comments on commit 177b559

Please sign in to comment.