https://github.com/rsm-hcd/spino
Spino is a build orchestration tool specifically for use within Deno Workspaces. It is designed to be a simple, fast, and reliable tool for managing the build process of Deno projects.
https://github.com/rsm-hcd/spino
deno hacktoberfest
Last synced: 7 months ago
JSON representation
Spino is a build orchestration tool specifically for use within Deno Workspaces. It is designed to be a simple, fast, and reliable tool for managing the build process of Deno projects.
- Host: GitHub
- URL: https://github.com/rsm-hcd/spino
- Owner: rsm-hcd
- License: mit
- Created: 2024-10-02T22:26:17.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-12-01T19:00:21.000Z (7 months ago)
- Last Synced: 2024-12-01T19:35:00.405Z (7 months ago)
- Topics: deno, hacktoberfest
- Language: TypeScript
- Homepage:
- Size: 53.7 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Spino
[](https://jsr.io/@rsm-hcd)
Spino is a build orchestration tool specifically for use within Deno Workspaces.
It is designed to be a simple, fast, and reliable tool for managing the build
process of Deno projects.## Pre-requisites
Spino requires Deno 2+ to be installed on your system:
## Usage
Spino is a command-line tool that can be installed globally using Deno.
```sh
deno install -g --allow-read --allow-run="deno" jsr:@rsm-hcd/spino
```Once installed, you can run the `spino` command from the terminal to run any
tasks or scripts that match the provided name.```sh
# Run a specific task
> spino dev# Run all dev and test tasks in parallel
> spino dev test# See help information
> spino --help
Usage: spino [task1] [task2] or spino [command]Commands:
upgrade: Upgrade spino to the latest version
list: List all available workspace tasks
```Or, you can run, without installing globally, by adding to the tasks section of
your `deno.json` file.```json
{
"tasks": {
"spino": "deno --allow-read --allow-run='deno' jsr:@rsm-hcd/spino",
"test": "deno task spino test"
}
}
```