1.0.0 • Published 2 years ago

@wioenena.q/prod v1.0.0

Weekly downloads
-
License
GPL-3.0
Repository
github
Last release
2 years ago

What is ?

Project designer for project builder cli modules.

Usage

const { ProjectSystem: { BaseProject } } = require("@wioenena.q/prod");

class Node extends BaseProject {
    constructor() {
        super("Node", __dirname + "/Node");
    }
}

const project = new Node();
const { rootDirectory } = project;
const childDirectory = rootDirectory.addChildDirectory("src");
const indexFile = childDirectory.addFile("index", ".js", "module.exports = () => console.log(\"Hi\");");
project.handle();

Contact