ducta
v0.1.3
Published
Alpha CLI for building and cleaning PROS projects
Readme
ducta
ducta is an alpha CLI for building and cleaning PROS projects.
Status
This project is currently alpha software.
- Breaking changes can happen between releases.
- Error handling and output may still change.
- Use with caution in production workflows.
Requirements
- Bun runtime
- A PROS project directory containing
project.pros makeavailable on your PATH
Installation
npm install -g ductaCommands
ducta build
Builds a PROS project by running make in the project directory.
Options:
-p, --project <path>: project directory (defaults to current working directory)-c, --clean: removebin/before building
Examples:
ducta build
ducta build --project /path/to/project
ducta build --project /path/to/project --cleanducta clean
Removes the bin/ directory for a PROS project.
Options:
-p, --project <path>: project directory (defaults to current working directory)
Examples:
ducta clean
ducta clean --project /path/to/projectDevelopment
bun install
bun run devUseful scripts:
bun run buildbun run testbun run typecheck
