Skip to content

Commit ac4f4b7

Browse files
authored
chore: update all repository references (#1791)
1 parent d95b80d commit ac4f4b7

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+280
-275
lines changed

β€Ž.github/dependabot.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ updates:
1414
interval: "weekly"
1515
ignore:
1616
# Updating @types/vscode requires unnecessarily bumping the VS Code engine version, see:
17-
# https://github.com/VeryGoodOpenSource/dart_frog/issues/1033
17+
# https://github.com/dart-frog-dev/dart_frog/issues/1033
1818
- dependency-name: "@types/vscode"
1919
- package-ecosystem: "pub"
2020
directory: "/bricks/create_dart_frog/hooks"

β€ŽCONTRIBUTING.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ This is a mono repo, a repository that includes more than one individual project
1212

1313
The contents of the mono repo is divided into the following directories:
1414

15-
- [`tool/`](https://github.com/VeryGoodOpenSource/dart_frog/tree/main/tool): contains internal operation scripts
16-
- [`assets/`](https://github.com/VeryGoodOpenSource/dart_frog/tree/main/assets): images to embed into READMEs
17-
- [`docs/`](https://github.com/VeryGoodOpenSource/dart_frog/tree/main/docs): source code for the [docs site][dart_frog_site].
18-
- [`examples/`](https://github.com/VeryGoodOpenSource/dart_frog/tree/main/examples): example projects of some of the several usages of Dart Frog
19-
- [`extensions/`](https://github.com/VeryGoodOpenSource/dart_frog/tree/main/extensions): Integrations with IDEs such as VS Code.
20-
- [`bricks/`](https://github.com/VeryGoodOpenSource/dart_frog/tree/main/bricks): Internal mason bricks used by [dart_frog_cli][dart_frog_cli_link] to perform tasks such as creating new projects, starting a dev server, and building a prod server.
21-
- [`packages/`](https://github.com/VeryGoodOpenSource/dart_frog/tree/main/packages): The source code of the packages that constitute the Dart Frog suite (`dart_frog_cli`, `dart_frog` and `dart_frog_gen`) as well as companion packages (such as `dart_frog_web_socket`).
15+
- [`tool/`](https://github.com/dart-frog-dev/dart_frog/tree/main/tool): contains internal operation scripts
16+
- [`assets/`](https://github.com/dart-frog-dev/dart_frog/tree/main/assets): images to embed into READMEs
17+
- [`docs/`](https://github.com/dart-frog-dev/dart_frog/tree/main/docs): source code for the [docs site][dart_frog_site].
18+
- [`examples/`](https://github.com/dart-frog-dev/dart_frog/tree/main/examples): example projects of some of the several usages of Dart Frog
19+
- [`extensions/`](https://github.com/dart-frog-dev/dart_frog/tree/main/extensions): Integrations with IDEs such as VS Code.
20+
- [`bricks/`](https://github.com/dart-frog-dev/dart_frog/tree/main/bricks): Internal mason bricks used by [dart_frog_cli][dart_frog_cli_link] to perform tasks such as creating new projects, starting a dev server, and building a prod server.
21+
- [`packages/`](https://github.com/dart-frog-dev/dart_frog/tree/main/packages): The source code of the packages that constitute the Dart Frog suite (`dart_frog_cli`, `dart_frog` and `dart_frog_gen`) as well as companion packages (such as `dart_frog_web_socket`).
2222

2323
Some of the included projects have more specific instructions on contribution. In these cases, the project root may include a `CONTRIBUTING.md` file with such instructions.
2424

@@ -53,7 +53,7 @@ accepted.
5353

5454
Prerequisites:
5555

56-
- Install a valid [Dart SDK](https://dart.dev/get-dart) in your local environment, it should be compatible with the latest version of [Dart Frog CLI](https://github.com/VeryGoodOpenSource/dart_frog/blob/main/packages/dart_frog_cli/pubspec.yaml). If you have Flutter installed, you likely have a valid Dart SDK version already installed.
56+
- Install a valid [Dart SDK](https://dart.dev/get-dart) in your local environment, it should be compatible with the latest version of [Dart Frog CLI](https://github.com/dart-frog-dev/dart_frog/blob/main/packages/dart_frog_cli/pubspec.yaml). If you have Flutter installed, you likely have a valid Dart SDK version already installed.
5757
- [Mason CLI][mason_install_link] (to run and test the `bricks`);
5858
- [Node.js][node_js_dowload_link], for working with the VS Code extension or the documentation website. Refer to their CONTRIBUTING files for further installation requirements.
5959
- Capability to run shell scripts (for the scripts under `tool/`).
@@ -91,7 +91,7 @@ git fetch
9191
git status
9292
```
9393

94-
2. Ensure the [GitHub pipeline](https://github.com/VeryGoodOpenSource/dart_frog/actions) is green (has passed successfully) for your given package.
94+
2. Ensure the [GitHub pipeline](https://github.com/dart-frog-dev/dart_frog/actions) is green (has passed successfully) for your given package.
9595

9696
3. Run the script under `tool/release_ready.sh` within the package root repository and the desired new version.
9797

@@ -106,18 +106,18 @@ The above example will: update the version of `<package>` to `<version>`, update
106106

107107
5. Commit, push and open a pull request from the new release branch.
108108

109-
6. Once merged, create a [release on GitHub][github_release_link]. The [publish workflow](https://github.com/VeryGoodOpenSource/dart_frog/blob/main/.github/workflows/publish.yaml) should take care of publishing the new version on the appropriate package manager.
109+
6. Once merged, create a [release on GitHub][github_release_link]. The [publish workflow](https://github.com/dart-frog-dev/dart_frog/blob/main/.github/workflows/publish.yaml) should take care of publishing the new version on the appropriate package manager.
110110

111111
7. Open follow-up pull requests updating this package usage in any other Dart Frog package that depends on this new release.
112112

113113
[conventional_commits_link]: https://www.conventionalcommits.org/en/v1.0.0
114-
[bug_report_link]: https://github.com/VeryGoodOpenSource/dart_frog/issues/new?assignees=&labels=bug&projects=&template=bug_report.md&title=fix%3A+
115-
[issue_creation_link]: https://github.com/VeryGoodOpenSource/dart_frog/issues/new/choose
114+
[bug_report_link]: https://github.com/dart-frog-dev/dart_frog/issues/new?assignees=&labels=bug&projects=&template=bug_report.md&title=fix%3A+
115+
[issue_creation_link]: https://github.com/dart-frog-dev/dart_frog/issues/new/choose
116116
[very_good_ventures_link]: https://verygood.ventures
117117
[dart_frog_site]: https://dart-frog.dev/
118118
[dart_frog_cli_link]: https://pub.dev/packages/dart_frog_cli
119119
[node_js_dowload_link]: https://nodejs.org/pt-br/download
120120
[mason_install_link]: https://docs.brickhub.dev/installing/
121121
[dart_standalone_link]: https://dart.dev/get-dart
122122
[dart_on_flutter_link]: https://docs.flutter.dev/get-started/install
123-
[github_release_link]: https://github.com/VeryGoodOpenSource/dart_frog/releases
123+
[github_release_link]: https://github.com/dart-frog-dev/dart_frog/releases

β€ŽREADME.md

Lines changed: 15 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,13 @@ For official documentation, please visit https://dart-frog.dev.
1717

1818
## Packages πŸ“¦
1919

20-
| Package | Pub |
21-
| --------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- |
22-
| [dart_frog](https://github.com/verygoodopensource/dart_frog/tree/main/packages/dart_frog) | [![pub package](https://img.shields.io/pub/v/dart_frog.svg)](https://pub.dev/packages/dart_frog) |
23-
| [dart_frog_gen](https://github.com/verygoodopensource/dart_frog/tree/main/packages/dart_frog_gen) | [![pub package](https://img.shields.io/pub/v/dart_frog_gen.svg)](https://pub.dev/packages/dart_frog_gen) |
24-
| [dart_frog_cli](https://github.com/verygoodopensource/dart_frog/tree/main/packages/dart_frog_cli) | [![pub package](https://img.shields.io/pub/v/dart_frog_cli.svg)](https://pub.dev/packages/dart_frog_cli) |
25-
| [dart_frog_web_socket](https://github.com/verygoodopensource/dart_frog/tree/main/packages/dart_frog_web_socket) | [![pub package](https://img.shields.io/pub/v/dart_frog_web_socket.svg)](https://pub.dev/packages/dart_frog_web_socket) |
26-
| [dart_frog_auth](https://github.com/verygoodopensource/dart_frog/tree/main/packages/dart_frog_auth) | [![pub package](https://img.shields.io/pub/v/dart_frog_auth.svg)](https://pub.dev/packages/dart_frog_auth) |
27-
20+
| Package | Pub |
21+
| ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- |
22+
| [dart_frog](https://github.com/dart-frog-dev/dart_frog/tree/main/packages/dart_frog) | [![pub package](https://img.shields.io/pub/v/dart_frog.svg)](https://pub.dev/packages/dart_frog) |
23+
| [dart_frog_gen](https://github.com/dart-frog-dev/dart_frog/tree/main/packages/dart_frog_gen) | [![pub package](https://img.shields.io/pub/v/dart_frog_gen.svg)](https://pub.dev/packages/dart_frog_gen) |
24+
| [dart_frog_cli](https://github.com/dart-frog-dev/dart_frog/tree/main/packages/dart_frog_cli) | [![pub package](https://img.shields.io/pub/v/dart_frog_cli.svg)](https://pub.dev/packages/dart_frog_cli) |
25+
| [dart_frog_web_socket](https://github.com/dart-frog-dev/dart_frog/tree/main/packages/dart_frog_web_socket) | [![pub package](https://img.shields.io/pub/v/dart_frog_web_socket.svg)](https://pub.dev/packages/dart_frog_web_socket) |
26+
| [dart_frog_auth](https://github.com/dart-frog-dev/dart_frog/tree/main/packages/dart_frog_auth) | [![pub package](https://img.shields.io/pub/v/dart_frog_auth.svg)](https://pub.dev/packages/dart_frog_auth) |
2827

2928
## Quick Start πŸš€
3029

@@ -93,16 +92,16 @@ Dart Frog provides a simple core with a small API surface area in order to reduc
9392
- [VS Code](https://marketplace.visualstudio.com/items?itemName=VeryGoodVentures.dart-frog): extends VS Code with support for Dart Frog and provides tools for effectively managing Dart Frog projects within VS Code.
9493

9594
[dart_installation_link]: https://dart.dev/get-dart
96-
[ci_badge]: https://github.com/VeryGoodOpenSource/dart_frog/actions/workflows/main.yaml/badge.svg
97-
[ci_link]: https://github.com/VeryGoodOpenSource/dart_frog/actions/workflows/main.yaml
98-
[coverage_badge]: https://raw.githubusercontent.com/VeryGoodOpenSource/dart_frog/main/packages/dart_frog/coverage_badge.svg
99-
[dart_frog_link_dark]: https://github.com/verygoodopensource/dart_frog#gh-dark-mode-only
100-
[dart_frog_link_light]: https://github.com/verygoodopensource/dart_frog#gh-light-mode-only
95+
[ci_badge]: https://github.com/dart-frog-dev/dart_frog/actions/workflows/main.yaml/badge.svg
96+
[ci_link]: https://github.com/dart-frog-dev/dart_frog/actions/workflows/main.yaml
97+
[credits_link]: https://github.com/dart-frog-dev/dart_frog/blob/main/CREDITS.md#acknowledgments
98+
[coverage_badge]: https://raw.githubusercontent.com/dart-frog-dev/dart_frog/main/packages/dart_frog/coverage_badge.svg
99+
[dart_frog_link_dark]: https://github.com/dart-frog-dev/dart_frog#gh-dark-mode-only
100+
[dart_frog_link_light]: https://github.com/dart-frog-dev/dart_frog#gh-light-mode-only
101101
[license_badge]: https://img.shields.io/badge/license-MIT-blue.svg
102102
[license_link]: https://opensource.org/licenses/MIT
103-
[logo_black]: https://raw.githubusercontent.com/VeryGoodOpenSource/dart_frog/main/assets/dart_frog_logo_black.png#gh-light-mode-only
104-
[logo_white]: https://raw.githubusercontent.com/VeryGoodOpenSource/dart_frog/main/assets/dart_frog_logo_white.png#gh-dark-mode-only
103+
[logo_black]: https://raw.githubusercontent.com/dart-frog-dev/dart_frog/main/assets/dart_frog_logo_black.png#gh-light-mode-only
104+
[logo_white]: https://raw.githubusercontent.com/dart-frog-dev/dart_frog/main/assets/dart_frog_logo_white.png#gh-dark-mode-only
105105
[very_good_analysis_badge]: https://img.shields.io/badge/style-very_good_analysis-B22C89.svg
106106
[very_good_analysis_link]: https://pub.dev/packages/very_good_analysis
107107
[very_good_ventures_link]: https://verygood.ventures
108-
[credits_link]: ./CREDITS.md#acknowledgments

β€Žassets/dart_frog.png

32.7 KB
Loading

β€Ždocs/src/content/docs/advanced/daemon.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ messages.
2121
:::note
2222

2323
For a concrete sample of how to interact with the daemon via `stdio`, see the
24-
[end-to-end tests](https://github.com/VeryGoodOpenSource/dart_frog/tree/main/packages/dart_frog_cli/e2e/test/daemon).
24+
[end-to-end tests](https://github.com/dart-frog-dev/dart_frog/tree/main/packages/dart_frog_cli/e2e/test/daemon).
2525

2626
:::
2727

β€Ždocs/src/content/docs/advanced/debugging.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ If you are interested in an extension for Android Studio or OpenVSX there are
2828
some open issues you can follow to learn more about it:
2929

3030
- **Android Studio**
31-
[#1326](https://github.com/VeryGoodOpenSource/dart_frog/issues/1326)
32-
- **OpenVSX** [#907](https://github.com/VeryGoodOpenSource/dart_frog/issues/907)
31+
[#1326](https://github.com/dart-frog-dev/dart_frog/issues/1326)
32+
- **OpenVSX** [#907](https://github.com/dart-frog-dev/dart_frog/issues/907)
3333

3434
:::
3535

β€Ždocs/src/content/docs/basics/dependency-injection.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ Handler middleware(Handler handler) {
291291
:::note
292292

293293
Right now, there is an issue about this
294-
[fix: Improve dependency injection order #745](https://github.com/VeryGoodOpenSource/dart_frog/issues/745)
294+
[fix: Improve dependency injection order #745](https://github.com/dart-frog-dev/dart_frog/issues/745)
295295
because some other DI frameworks are working top to bottom and dart_frog is
296296
bottom to top.
297297

β€Ždocs/src/content/docs/tutorials/counter.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,4 +265,4 @@ You have requested this route 2 time(s).
265265
only maintained in memory. :::
266266

267267
πŸŽ‰ Congrats, you've created a `counter` application using Dart Frog. View the
268-
[full source code](https://github.com/VeryGoodOpenSource/dart_frog/tree/main/examples/counter).
268+
[full source code](https://github.com/dart-frog-dev/dart_frog/tree/main/examples/counter).

β€Ždocs/src/content/docs/tutorials/todos.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -775,4 +775,4 @@ middleware that look similar to:
775775
:::
776776

777777
πŸŽ‰ Congrats, you've created a `todos` application using Dart Frog. View the
778-
[full source code](https://github.com/VeryGoodOpenSource/dart_frog/tree/main/examples/todos).
778+
[full source code](https://github.com/dart-frog-dev/dart_frog/tree/main/examples/todos).

β€Ždocs/src/content/docs/tutorials/web-socket-counter.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -483,4 +483,4 @@ only maintained in memory.
483483

484484
πŸŽ‰ Congrats, you've created a real-time counter application using Dart Frog.
485485
View the
486-
[full source code](https://github.com/VeryGoodOpenSource/dart_frog/tree/main/examples/web_socket_counter).
486+
[full source code](https://github.com/dart-frog-dev/dart_frog/tree/main/examples/web_socket_counter).

0 commit comments

Comments
Β (0)