diff options
author | jbion <joffrey.bion@amadeus.com> | 2017-01-20 19:50:07 +0100 |
---|---|---|
committer | jbion <joffrey.bion@amadeus.com> | 2017-01-20 19:50:07 +0100 |
commit | 941cc5ff9fc59e2e39d5f458d9921b74d09b2f64 (patch) | |
tree | a6e9af050fa7b2a791f4dae911b78c967851ea15 /frontend | |
parent | Remove conflicting old index (diff) | |
download | seven-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.gradle | 5 |
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'] } |