Skip to content

Commit 2ba7835

Browse files
authored
fix(build): order release preparation tasks (#6219)
Signed-off-by: Mark Phelps <[email protected]>
1 parent 1a4ee81 commit 2ba7835

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

.mise.toml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,11 @@ npm run lint
8686

8787
[tasks.prep]
8888
description = "Prepare project for building (clean + ui:build)"
89-
depends = ["clean", "ui:build"]
90-
run = 'echo " > Prepared."'
89+
depends = ["clean"]
90+
run = """
91+
mise run ui:build
92+
echo " > Prepared."
93+
"""
9194

9295
[tasks.build]
9396
description = "Build the project similar to a release build"

0 commit comments

Comments
 (0)