Tools: Export rootDir from utils

pull/7928/head
Laurent Cozic 2023-03-19 17:31:37 +00:00
parent 53302c9e90
commit 3a8d87d292
1 changed files with 4 additions and 0 deletions

View File

@ -1,9 +1,13 @@
import execCommand from './execCommand';
import commandToString from './commandToString';
import splitCommandString from './splitCommandString';
import { dirname } from 'path';
const rootDir = dirname(dirname(dirname(__dirname)));
export {
execCommand,
commandToString,
splitCommandString,
rootDir,
};