UNPKG

@forwardslashns/fws-cli

Version:

CLI meant to work together with other Forwardslash boilerplates.

8 lines (6 loc) 198 B
import { mkdirSync } from 'fs'; import { ROLL_BACK } from '../consts/rollBack.js'; export const createDirectory = (dirPath) => { mkdirSync(dirPath); ROLL_BACK.directories.push(dirPath); };