UNPKG

zenith-gen

Version:

A CLI tool designed to streamline the creation of projects within the Zenith Inova ecosystem, providing optimized configurations and modern development tools.

6 lines (5 loc) 167 B
import fs from 'fs-extra'; import path from 'path'; export function configureNvmRc(projectPath) { fs.writeFileSync(path.join(projectPath, '.nvmrc'), 'lts/Jod'); }