❗️ Note: This repository is deprecated and is no longer being maintained. Delgada itself is still being worked on, but has pivoted in a new direction. This repo will remain for posterity/archival purposes. ❗️
The command line interface and standard tooling used for Delgada development.
npm install -D @delgada/cliAlternatively, use the Delgada template as a jumping off point for new Delgada projects.
Currently, the CLI has only implemented the build command.
The build command is responsible for compiling Delgada source code and building output HTML, CSS, and JavaScript files.
The command has two optional flags:
-e, --entry <path>: set entrypoint directory (default: "./src")-b, --build <path>: set build directory (default: "./build")
The expected usage of this command is to be wrapped as an NPM build script inside package.json.
"scripts": {
"build": "delgada build"
}