Add plugin template (#738)

Adds a new plugin template to the `init` command: `rojo init --kind
plugin`.
This commit is contained in:
Micah
2023-07-23 19:12:48 -05:00
committed by GitHub
parent 89b6666436
commit f6fc5599c0
6 changed files with 65 additions and 4 deletions

View File

@@ -0,0 +1,17 @@
# {project_name}
Generated by [Rojo](https://github.com/rojo-rbx/rojo) {rojo_version}.
## Getting Started
To build this plugin to your local plugins folder, use:
```bash
rojo build -p "{project_name}.rbxm"
```
You can include the `watch` flag to re-build it on save:
```bash
rojo build -p "{project_name}.rbxm" --watch
```
For more help, check out [the Rojo documentation](https://rojo.space/docs).