Skip to content

Commit

Permalink
Add Makefile to link projects
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathansamines committed Jun 3, 2017
1 parent 80c607c commit 70b7212
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
all: build link

build:
@echo "Bundling client application with lerna"
@lerna run build

link:
@echo "Deleting web application current dist"
@rm -rf ../../workspace/process-planner-web/WebContent/page/dist
@echo "Linking client application bundle to webapp"
@cp -r packages/process-simulator-web/dist ../../workspace/process-planner-web/WebContent/page/

0 comments on commit 70b7212

Please sign in to comment.