Skip to content

Commit

Permalink
Added missing improvement to the build-deps Makefile command
Browse files Browse the repository at this point in the history
  • Loading branch information
sneridagh committed Oct 8, 2024
1 parent d18a4e5 commit fc47efa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/volto/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,10 @@ install: ## Set up development environment
cypress-install: ## Install Cypress for acceptance tests
$(NODEBIN)/cypress install

../registry/dist: ../registry/src
../registry/dist: $(shell find ../registry/src -type f)
(cd ../../ && pnpm build:registry)

../components/dist: ../components/src
../components/dist: $(shell find ../components/src -type f)
(cd ../../ && pnpm build:components)

.PHONY: build-deps
Expand Down

0 comments on commit fc47efa

Please sign in to comment.