@zxnode/build
v0.0.38
Published
ZXTeam's NodeJS Reusable Library for Build Automation
Downloads
48
Readme
ZXBuild (ZXTeam's Build Tool)
The tool is a helper to automate build of TypeScrpt-based projects. Main reason of the tool is to keep same structure of all our projects.
Use cases
# Crean workspace
$ zxbuild clean
# Compile
$ zxbuild compile
# Make distributive
$ zxbuild distProject structure
Library
├─ my-library
│ ├─ .vscode
│ ├─ src
│ └─ testService
├─ my-service
│ ├─ .vscode
│ ├─ src
│ └─ testApplication
├─ my-application
│ ├─ .vscode
│ ├─ src.common
│ ├─ src.client
│ ├─ src.host
│ └─ test