diff options
Diffstat (limited to 'packages/monorepo-scripts/src/utils.ts')
-rw-r--r-- | packages/monorepo-scripts/src/utils.ts | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/packages/monorepo-scripts/src/utils.ts b/packages/monorepo-scripts/src/utils.ts deleted file mode 100644 index 9aa37e272..000000000 --- a/packages/monorepo-scripts/src/utils.ts +++ /dev/null @@ -1,20 +0,0 @@ -import * as _ from 'lodash'; -import { exec as execAsync, spawn } from 'promisify-child-process'; - -export const utils = { - log(...args: any[]): void { - console.log(...args); // tslint:disable-line:no-console - }, - getNextPatchVersion(currentVersion: string): string { - const versionSegments = currentVersion.split('.'); - const patch = _.parseInt(_.last(versionSegments) as string); - const newPatch = patch + 1; - const newPatchVersion = `${versionSegments[0]}.${versionSegments[1]}.${newPatch}`; - return newPatchVersion; - }, - async prettifyAsync(filePath: string, cwd: string) { - await execAsync(`prettier --write ${filePath} --config .prettierrc`, { - cwd, - }); - }, -}; |