From a0cb480a7508a7c172b32efbcd18f4c18d72cc4e Mon Sep 17 00:00:00 2001 From: dvaJi Date: Tue, 3 Sep 2019 22:39:47 -0400 Subject: [PATCH 1/2] fix: add double quote to Webpack output path argument to avoid an error with whitespaces in the path --- frontend/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/pom.xml b/frontend/pom.xml index b10f601..e924daa 100755 --- a/frontend/pom.xml +++ b/frontend/pom.xml @@ -46,7 +46,7 @@ webpack - --output-path=${project.build.directory}/dist + --output-path="${project.build.directory}/dist" From 01929819eca8924f3e8d2bda0e9f7c44696d0252 Mon Sep 17 00:00:00 2001 From: dvaJi Date: Sun, 13 Oct 2019 21:15:00 -0300 Subject: [PATCH 2/2] chore: use npm script to build frontend --- frontend/pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/pom.xml b/frontend/pom.xml index e924daa..8df6ca3 100755 --- a/frontend/pom.xml +++ b/frontend/pom.xml @@ -43,10 +43,10 @@ webpack-build - webpack + npm - --output-path="${project.build.directory}/dist" + run build -- --output-path="${project.build.directory}/dist"