(dir: string, options: unknown)
| 173 | } |
| 174 | |
| 175 | export async function deployCommand(dir: string, options: unknown) { |
| 176 | return await wrapCommandAction("deployCommand", DeployCommandOptions, options, async (opts) => { |
| 177 | return await _deployCommand(dir, opts); |
| 178 | }); |
| 179 | } |
| 180 | |
| 181 | async function _deployCommand(dir: string, options: DeployCommandOptions) { |
| 182 | const span = trace.getSpan(context.active()); |
no test coverage detected
searching dependent graphs…