Skip to content

Commit 3b51ab8

Browse files
Add command to Makefile for building vue files
1 parent 307a444 commit 3b51ab8

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

Makefile

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,13 @@ setup_node:
88
curl -sL https://deb.nodesource.com/setup_9.x | sudo -E bash -
99
apt install -y nodejs
1010
npm install -g npm
11+
12+
vue_dev:
13+
rm -rf pythonph/assets/webpack_bundles/*;
14+
cd frontend; npm run build_dev; cd -;
15+
make assets
16+
17+
vue:
18+
rm -rf pythonph/assets/webpack_bundles/*;
19+
cd frontend; npm run build; cd -;
20+
make assets

0 commit comments

Comments
 (0)