Skip to content

Commit 375bd1c

Browse files
authored
chore(dart_frog_cli): v1.2.9 (#1860)
1 parent 42f4fd9 commit 375bd1c

File tree

6 files changed

+12
-217
lines changed

6 files changed

+12
-217
lines changed

β€Ž.github/workflows/update_cli_bundles.yamlβ€Ž

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,17 +18,14 @@ jobs:
1818

1919
- uses: dart-lang/setup-dart@v1
2020

21-
- name: Install mason
22-
run: dart pub global activate mason_cli
23-
24-
- name: Bump templates
21+
- name: Update Bundles
2522
run: tool/generate_bundles.sh
2623

2724
- name: Create Pull Request
2825
uses: peter-evans/[email protected]
2926
with:
3027
base: main
31-
branch: feat/bump-template-bundles
28+
branch: feat/update-template-bundles
3229
commit-message: "feat: update cli bundles"
3330
title: "feat(dart_frog_cli): update cli bundles"
3431
body: Please squash and merge me!

β€Žpackages/dart_frog_cli/CHANGELOG.mdβ€Ž

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 1.2.9
2+
3+
- fix: workspace package version resolution ([#1859](https://github.com/dart-frog-dev/dart_frog/pull/1859))
4+
15
# 1.2.8
26

37
- feat: support for Dart workspaces ([#1825](https://github.com/dart-frog-dev/dart_frog/pull/1825))

β€Žpackages/dart_frog_cli/lib/src/commands/build/templates/dart_frog_prod_server_bundle.dartβ€Ž

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

β€Žpackages/dart_frog_cli/lib/src/version.dartβ€Ž

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Žpackages/dart_frog_cli/pubspec.yamlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: dart_frog_cli
22
description: The official command line interface for Dart Frog β€” a fast, minimalistic backend framework for Dart.
3-
version: 1.2.8
3+
version: 1.2.9
44
homepage: https://dart-frog.dev
55
repository: https://github.com/dart-frog-dev/dart_frog
66
issue_tracker: https://github.com/dart-frog-dev/dart_frog/issues

β€Žtool/generate_bundles.shβ€Ž

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
#!/bin/bash
2+
3+
# Ensure mason_cli is installed.
4+
dart pub global activate mason_cli
5+
26
# Runs `mason bundle` to generate bundles for all bricks within the top level bricks directory.
37

48
# Create Dart Frog Brick

0 commit comments

Comments
Β (0)