Skip to content

Commit 271480e

Browse files
authored
fix: log creating dev bundle differently (#22273)
Log the dev bundle creation at a earlier time. Closes #16038
1 parent 2c49cb2 commit 271480e

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

flow-server/src/main/java/com/vaadin/flow/server/frontend/TaskRunDevBundleBuild.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -89,13 +89,12 @@ public class TaskRunDevBundleBuild implements FallibleCommand {
8989
README_NOT_CREATED = "Failed to create a README file in "
9090
+ options.getBuildDirectoryName() + "/"
9191
+ Constants.DEV_BUNDLE_LOCATION;
92+
getLogger().info(
93+
"Creating a new development mode bundle. This can take a while but will only run when the project setup is changed, addons are added or frontend files are modified");
9294
}
9395

9496
@Override
9597
public void execute() throws ExecutionFailedException {
96-
getLogger().info(
97-
"Creating a new development mode bundle. This can take a while but will only run when the project setup is changed, addons are added or frontend files are modified");
98-
9998
runFrontendBuildTool("Vite", "vite", "vite", "build");
10099

101100
copyPackageLockToBundleFolder();

0 commit comments

Comments
 (0)