Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions .github/workflows/update_cli_bundles.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,14 @@ jobs:

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

- name: Install mason
run: dart pub global activate mason_cli

- name: Bump templates
- name: Update Bundles
run: tool/generate_bundles.sh

- name: Create Pull Request
uses: peter-evans/[email protected]
with:
base: main
branch: feat/bump-template-bundles
branch: feat/update-template-bundles
commit-message: "feat: update cli bundles"
title: "feat(dart_frog_cli): update cli bundles"
body: Please squash and merge me!
Expand Down
4 changes: 4 additions & 0 deletions packages/dart_frog_cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 1.2.9

- fix: workspace package version resolution ([#1859](https://github.com/dart-frog-dev/dart_frog/pull/1859))

# 1.2.8

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

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages/dart_frog_cli/lib/src/version.dart

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

2 changes: 1 addition & 1 deletion packages/dart_frog_cli/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: dart_frog_cli
description: The official command line interface for Dart Frog — a fast, minimalistic backend framework for Dart.
version: 1.2.8
version: 1.2.9
homepage: https://dart-frog.dev
repository: https://github.com/dart-frog-dev/dart_frog
issue_tracker: https://github.com/dart-frog-dev/dart_frog/issues
Expand Down
4 changes: 4 additions & 0 deletions tool/generate_bundles.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
#!/bin/bash

# Ensure mason_cli is installed.
dart pub global activate mason_cli

# Runs `mason bundle` to generate bundles for all bricks within the top level bricks directory.

# Create Dart Frog Brick
Expand Down
Loading