neon 0.4.0

A safe abstraction layer for Node.js.
Documentation
1
2
3
4
5
6
import Project from '../project';

export default async function neon_clean(root: string) {
  let project = await Project.create(root);
  await project.clean();
}