Skip to content

Commit

Permalink
fix: rename lock file (#19751) (#19755)
Browse files Browse the repository at this point in the history
Rename the flow-node-tasks
lock file to vaadin-node-tasks
so it doesn't confuse application
state when running a non flow
build.

Closes #19187

Co-authored-by: caalador <[email protected]>
  • Loading branch information
vaadin-bot and caalador authored Aug 7, 2024
1 parent 9651da8 commit 5bf5405
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ flow-tests/test-root-context/src/main/bundles/
flow-tests/test-theme-no-polymer/src/main/bundles/
flow-tests/test-themes/src/main/bundles/

.flow-node-tasks.lock
.vaadin-node-tasks.lock

# Exclude generated vaadin dev tools frontend
vaadin-dev-server/src/main/resources/META-INF/frontend
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ public class NodeTasks implements FallibleCommand {
public NodeTasks(Options options) {
// Lock file is created in the project root folder and not in target/ so
// that Maven does not remove it
lockFile = new File(options.getNpmFolder(), ".flow-node-tasks.lock")
lockFile = new File(options.getNpmFolder(), ".vaadin-node-tasks.lock")
.toPath();

ClassFinder classFinder = options.getClassFinder();
Expand Down

0 comments on commit 5bf5405

Please sign in to comment.