@lsolova/monobuild
v0.0.5
Published
Monorepository building tool
Readme
Monobuild
A simple monorepository building tool.
Prerequisites
Define two scripts in every package.json, with build and serve property names. (The property value is just an example.)
"scripts": { "build": "vite build", "serve": "vite build --watch" }
Usage
Function
import { BuildModeSet, build } from "@lsolova/monobuild";
build({
mode: BuildModeSet.BUILD,
verbose: true
}).catch(console.error);