Skip to content

Commit

Permalink
chore: Enable Netlify build
Browse files Browse the repository at this point in the history
  • Loading branch information
igarashitm committed Jul 8, 2024
1 parent d9986e8 commit 2130ed9
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
netlify:
@echo Building Netlify website
make netlify-yarn-install
make netlify-clean
make netlify-build-modules

netlify-clean:
@echo Cleanup
(yarn workspaces foreach --verbose --topological-dev run clean)

netlify-yarn-install:
@echo Perform yarn install
(yarn install)

netlify-build-modules:
@echo Build all modules
(yarn workspaces foreach --verbose --topological-dev run build)

0 comments on commit 2130ed9

Please sign in to comment.