summaryrefslogtreecommitdiff
path: root/frontend
diff options
context:
space:
mode:
authorjbion <joffrey.bion@amadeus.com>2017-01-20 19:50:07 +0100
committerjbion <joffrey.bion@amadeus.com>2017-01-20 19:50:07 +0100
commit941cc5ff9fc59e2e39d5f458d9921b74d09b2f64 (patch)
treea6e9af050fa7b2a791f4dae911b78c967851ea15 /frontend
parentRemove conflicting old index (diff)
downloadseven-wonders-941cc5ff9fc59e2e39d5f458d9921b74d09b2f64.tar.gz
seven-wonders-941cc5ff9fc59e2e39d5f458d9921b74d09b2f64.tar.bz2
seven-wonders-941cc5ff9fc59e2e39d5f458d9921b74d09b2f64.zip
Use the build folder to stay in the standard
Diffstat (limited to 'frontend')
-rw-r--r--frontend/build.gradle5
1 files changed, 1 insertions, 4 deletions
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