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) 178 B
import path from 'path'; import fs from 'fs-extra'; export function configureNpmRc(projectPath) { fs.writeFileSync(path.join(projectPath, '.npmrc'), 'engine-strict=true'); }