Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tyler-technologies-oss/forge-cli
A command line interface for managing Forge Web Component projects
https://github.com/tyler-technologies-oss/forge-cli
cli forge
Last synced: 3 months ago
JSON representation
A command line interface for managing Forge Web Component projects
- Host: GitHub
- URL: https://github.com/tyler-technologies-oss/forge-cli
- Owner: tyler-technologies-oss
- License: apache-2.0
- Created: 2022-04-06T13:20:12.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-09-09T18:04:07.000Z (4 months ago)
- Last Synced: 2024-09-09T22:09:37.596Z (4 months ago)
- Topics: cli, forge
- Language: TypeScript
- Homepage:
- Size: 3.13 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Tyler Forge™ CLI
The Forge CLI is a command line utility for building and packaging Tyler Forge™ based Web Component libraries.
## Usage
```shell
npm i -D @tylertech/forge-cli
```## View help
```shell
forge help
```## Local Development
Install dependencies:
```shell
npm install
```Build the package:
```shell
npm run build
```To run the build command in watch mode use:
```shell
npm run watch
```Running the CLI locally can be done by using standard `npm link`, or by using `node` to execute it as a binary via relative path:
```shell
node ../forge-cli/bin/forge help
```