UNPKG

denoify

Version:

For NPM module authors that would like to support Deno but do not want to write and maintain a port.

10 lines (9 loc) 255 B
#!/usr/bin/env node /** * To disable dry run mode DRY_RUN=1 env variable must be set. * This function Change change the working directory. * */ export declare function run(params: { moduleDirPath: string; isDryRun: boolean; }): Promise<void>;