Skip to content

Update frontend build #13

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Make build script platform independent
  • Loading branch information
emanuelmutschlechner committed Sep 15, 2018
commit 48f88975d3537bdfba56525addf272f29815e702
3 changes: 2 additions & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "rm -rf ../public/{js,css,img} && vue-cli-service build --no-clean",
"build": "rimraf ../public/{js,css,img} && vue-cli-service build --no-clean",
"lint": "vue-cli-service lint"
},
"dependencies": {
Expand All @@ -15,6 +15,7 @@
"@vue/cli-plugin-babel": "^3.0.0-rc.9",
"@vue/cli-plugin-eslint": "^3.0.0-rc.9",
"@vue/cli-service": "^3.0.0-rc.9",
"rimraf": "^2.6.2",
"vue-template-compiler": "^2.5.16"
},
"eslintConfig": {
Expand Down
Loading