runok
Version:
NPM scripts on steroids! Replace your scripts with pure JS
31 lines • 894 B
TypeScript
import runok from './command';
import chdir from './utils/chdir';
import stopOnFail from './utils/stopOnFail';
import { say, yell } from './output';
import exec from './tasks/exec';
import npx from './tasks/npx';
import npmRun from './tasks/npmRun';
import copy from './tasks/copy';
import replaceInFile from './tasks/replaceInFile';
import writeToFile from './tasks/writeToFile';
import git from './tasks/git';
declare const _default: {
chdir: typeof chdir;
tasks: {
exec: typeof exec;
npx: typeof npx;
npmRun: typeof npmRun;
copy: typeof copy;
git: typeof git;
replaceInFile: typeof replaceInFile;
writeToFile: typeof writeToFile;
};
output: {
say: typeof say;
yell: typeof yell;
};
stopOnFail: typeof stopOnFail;
runok: typeof runok;
};
export = _default;
//# sourceMappingURL=index.d.ts.map