Skip to content
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
".": "1.1.0",
"site": "1.0.3"
"site": "1.1.0"
}
1 change: 1 addition & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ Very Good CLI allows you to generate scalable templates and use helpful commands

Templates have their own repositories, if you want to contribute to them please refer to their repositories:

- [App UI Package](https://github.com/VeryGoodOpenSource/very_good_templates/tree/main/very_good_app_ui)
- [Dart CLI](https://github.com/VeryGoodOpenSource/very_good_templates/tree/main/very_good_dart_cli)
- [Dart Package](https://github.com/VeryGoodOpenSource/very_good_templates/tree/main/very_good_dart_package)
- [Docs Site](https://github.com/VeryGoodOpenSource/very_good_templates/tree/main/very_good_docs_site)
Expand Down
13 changes: 13 additions & 0 deletions site/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## [1.1.0](https://github.com/VeryGoodOpenSource/very_good_cli/compare/site-v1.0.3...site-v1.1.0) (2026-03-18)


### Features

* enables several globs to exclude from coverage calculations ([#1532](https://github.com/VeryGoodOpenSource/very_good_cli/issues/1532)) ([21abe02](https://github.com/VeryGoodOpenSource/very_good_cli/commit/21abe0273d7668c6082af692f50c2a4ab7fec144))


### Miscellaneous Chores

* **deps-dev:** bump eslint from 10.0.2 to 10.0.3 in /site ([#1522](https://github.com/VeryGoodOpenSource/very_good_cli/issues/1522)) ([90f2ea5](https://github.com/VeryGoodOpenSource/very_good_cli/commit/90f2ea54c57f16da36c5d37e951ff79ff590e08f))
* **deps-dev:** bump jest from 30.2.0 to 30.3.0 in /site ([#1533](https://github.com/VeryGoodOpenSource/very_good_cli/issues/1533)) ([2b5b1ee](https://github.com/VeryGoodOpenSource/very_good_cli/commit/2b5b1ee97e01bc340f0a703afb1726af3c4d13ab))

## [1.0.3](https://github.com/VeryGoodOpenSource/very_good_cli/compare/site-v1.0.2...site-v1.0.3) (2026-03-02)

### Miscellaneous Chores
Expand Down
1 change: 1 addition & 0 deletions site/docs/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ Usage: very_good create <subcommand> <project-name> [arguments]
-h, --help Print this usage information.

Available subcommands:
app_ui_package Generate a Very Good App UI package.
dart_cli Generate a Very Good Dart CLI application.
dart_package Generate a Very Good Dart package.
docs_site Generate a Very Good documentation site.
Expand Down
27 changes: 27 additions & 0 deletions site/docs/templates/app_ui_package.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
---
sidebar_position: 3
---

# App UI Package 🎨

This template is for a Flutter app UI package. It provides a shared design
system layer for your Flutter application, separating UI components from
business logic.

## Usage

:::tip
Use `-o` or `--output-directory` to specify a custom output directory for the
generated project.
:::

```sh
# Create a new App UI package named my_app_ui
very_good create app_ui_package my_app_ui --desc "My new App UI package"

# Create a new App UI package that is publishable
very_good create app_ui_package my_app_ui --desc "My new App UI package" --publishable

# Create a new App UI package named with the name of the current directory
very_good create app_ui_package . --desc "My new App UI package"
```
4 changes: 2 additions & 2 deletions site/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion site/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "site",
"version": "1.0.3",
"version": "1.1.0",
"private": true,
"scripts": {
"docusaurus": "docusaurus",
Expand Down
Loading