Skip to content

Commit 24766a6

Browse files
chore(site): 1.1.0 (#1523)
* chore(site): 1.0.1 * chore: run prettier * chore(site): 1.0.2 * fix: conflicts * chore(site): 1.0.3 * chore: remove package-lock.json * chore(site): 1.1.0 * chore: ignore CHANGELOG format and exclude manifest * chore(site): 1.1.0 * docs: add missing commands * fix: conflicts --------- Co-authored-by: Marcos Sevilla <marcossevilla14@gmail.com> Co-authored-by: Marcos Sevilla <me@marcossevilla.dev>
1 parent 31e5506 commit 24766a6

File tree

7 files changed

+46
-4
lines changed

7 files changed

+46
-4
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
".": "1.1.0",
3-
"site": "1.0.3"
3+
"site": "1.1.0"
44
}

CONTRIBUTING.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ Very Good CLI allows you to generate scalable templates and use helpful commands
88

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

11+
- [App UI Package](https://github.com/VeryGoodOpenSource/very_good_templates/tree/main/very_good_app_ui)
1112
- [Dart CLI](https://github.com/VeryGoodOpenSource/very_good_templates/tree/main/very_good_dart_cli)
1213
- [Dart Package](https://github.com/VeryGoodOpenSource/very_good_templates/tree/main/very_good_dart_package)
1314
- [Docs Site](https://github.com/VeryGoodOpenSource/very_good_templates/tree/main/very_good_docs_site)

site/CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Changelog
22

3+
## [1.1.0](https://github.com/VeryGoodOpenSource/very_good_cli/compare/site-v1.0.3...site-v1.1.0) (2026-03-18)
4+
5+
6+
### Features
7+
8+
* 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))
9+
10+
11+
### Miscellaneous Chores
12+
13+
* **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))
14+
* **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))
15+
316
## [1.0.3](https://github.com/VeryGoodOpenSource/very_good_cli/compare/site-v1.0.2...site-v1.0.3) (2026-03-02)
417

518
### Miscellaneous Chores

site/docs/overview.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ Usage: very_good create <subcommand> <project-name> [arguments]
5353
-h, --help Print this usage information.
5454

5555
Available subcommands:
56+
app_ui_package Generate a Very Good App UI package.
5657
dart_cli Generate a Very Good Dart CLI application.
5758
dart_package Generate a Very Good Dart package.
5859
docs_site Generate a Very Good documentation site.
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
sidebar_position: 3
3+
---
4+
5+
# App UI Package 🎨
6+
7+
This template is for a Flutter app UI package. It provides a shared design
8+
system layer for your Flutter application, separating UI components from
9+
business logic.
10+
11+
## Usage
12+
13+
:::tip
14+
Use `-o` or `--output-directory` to specify a custom output directory for the
15+
generated project.
16+
:::
17+
18+
```sh
19+
# Create a new App UI package named my_app_ui
20+
very_good create app_ui_package my_app_ui --desc "My new App UI package"
21+
22+
# Create a new App UI package that is publishable
23+
very_good create app_ui_package my_app_ui --desc "My new App UI package" --publishable
24+
25+
# Create a new App UI package named with the name of the current directory
26+
very_good create app_ui_package . --desc "My new App UI package"
27+
```

site/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

site/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "site",
3-
"version": "1.0.3",
3+
"version": "1.1.0",
44
"private": true,
55
"scripts": {
66
"docusaurus": "docusaurus",

0 commit comments

Comments
 (0)