summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--backend/build.gradle4
-rw-r--r--frontend/build.gradle5
2 files changed, 4 insertions, 5 deletions
diff --git a/backend/build.gradle b/backend/build.gradle
index 61e8960b..b8331c28 100644
--- a/backend/build.gradle
+++ b/backend/build.gradle
@@ -35,10 +35,12 @@ dependencies {
testCompile 'org.springframework.boot:spring-boot-starter-test'
}
+// packages the frontend app within the jar
jar {
- from('../frontend/dist') {
+ from('../frontend/build') {
into 'static'
}
}
+// make sure we build the frontend before creating the jar
jar.dependsOn(':frontend:assemble') \ No newline at end of file
diff --git a/frontend/build.gradle b/frontend/build.gradle
index 9be32934..2b8eabfd 100644
--- a/frontend/build.gradle
+++ b/frontend/build.gradle
@@ -4,9 +4,6 @@ plugins {
apply plugin: 'base'
-version '0.0.1'
-buildDir = 'dist'
-
node {
version = '6.9.4'
npmVersion = '4.1.1'
@@ -17,7 +14,7 @@ node {
task bundle(type: YarnTask) {
inputs.dir(new File('public'))
inputs.dir(new File('src'))
- outputs.dir(new File('dist'))
+ outputs.dir(new File('build'))
args = ['run', 'build']
}
bgstack15