UNPKG

lina-infratech-cli

Version:

A CLI tool for Lina Infratech Developers

17 lines (13 loc) 296 B
import path from 'path' import { cp } from 'shelljs' export function generateProjectStructure() { const sourceDir = __dirname.split('dist')[0] const filesDir = path.join( sourceDir, 'src', 'generator', 'standard-files', 'src', ) cp('-R', filesDir, process.cwd()) }