From 81aba310d03ac708df079fe1db9ad9ce92fc2bc1 Mon Sep 17 00:00:00 2001 From: Harry Fox <1254033+hfoxy@users.noreply.github.com> Date: Tue, 23 Apr 2024 09:19:25 +0100 Subject: [PATCH] update Taskfile.tmpl.yml to include darwin run task (#3417) * update Taskfile.tmpl.yml to include darwin run task * add changelog line for #3417 --- mkdocs-website/docs/en/changelog.md | 1 + v3/internal/templates/_common/Taskfile.tmpl.yml | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/mkdocs-website/docs/en/changelog.md b/mkdocs-website/docs/en/changelog.md index 6d82b20c6..14cb98d98 100644 --- a/mkdocs-website/docs/en/changelog.md +++ b/mkdocs-website/docs/en/changelog.md @@ -58,6 +58,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Fix the output path and extension of model files produced by the binding generator by [@fbbdev](https://github.com/fbbdev) in [#3334](https://github.com/wailsapp/wails/pull/3334) - Fix the import paths of model files in JS code produced by the binding generator by [@fbbdev](https://github.com/fbbdev) in [#3334](https://github.com/wailsapp/wails/pull/3334) - Fix drag-n-drop on some linux distros by [@abichinger](https://github.com/abichinger) in [#3346](https://github.com/wailsapp/wails/pull/3346) +- Fix missing task for macOS when using `wails3 task dev` by [@hfoxy](https://github.com/hfoxy) in [#3417](https://github.com/wailsapp/wails/pull/3417) ### Changed diff --git a/v3/internal/templates/_common/Taskfile.tmpl.yml b/v3/internal/templates/_common/Taskfile.tmpl.yml index f92bd1f91..5082a2524 100644 --- a/v3/internal/templates/_common/Taskfile.tmpl.yml +++ b/v3/internal/templates/_common/Taskfile.tmpl.yml @@ -421,6 +421,10 @@ tasks: cmds: - {{ "'{{.BIN_DIR}}/{{.APP_NAME}}'" }} + run:darwin: + cmds: + - {{ "'{{.BIN_DIR}}/{{.APP_NAME}}'" }} + dev:frontend: summary: Runs the frontend in development mode dir: frontend