diff options
author | Joffrey BION <joffrey.bion@gmail.com> | 2019-05-16 23:48:38 +0200 |
---|---|---|
committer | Joffrey BION <joffrey.bion@gmail.com> | 2019-05-16 23:48:38 +0200 |
commit | 2382a452456e4bdef4584e1046925e372624cb79 (patch) | |
tree | 0e49b2e5d81facb55fb8b08228abeb218a27d466 /frontend/build.gradle | |
parent | Remove GRADLE_METADATA feature to avoid breaking frontend build (diff) | |
download | seven-wonders-2382a452456e4bdef4584e1046925e372624cb79.tar.gz seven-wonders-2382a452456e4bdef4584e1046925e372624cb79.tar.bz2 seven-wonders-2382a452456e4bdef4584e1046925e372624cb79.zip |
Rationalize module names
Diffstat (limited to 'frontend/build.gradle')
-rw-r--r-- | frontend/build.gradle | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/frontend/build.gradle b/frontend/build.gradle deleted file mode 100644 index 61f01053..00000000 --- a/frontend/build.gradle +++ /dev/null @@ -1,32 +0,0 @@ -plugins { - id "com.moowork.node" version "1.3.1" -} - -apply plugin: 'base' - -buildDir = 'build' - -node { - version = '10.15.3' - yarnVersion = '1.16.0' - download = true -} - -task bundle(type: YarnTask) { - inputs.dir(new File('public')) - inputs.dir(new File('src')) - outputs.dir(new File("$buildDir")) - args = ['run', 'build'] -} - -task start(type: YarnTask) { - args = ['start'] -} - -task test(type: YarnTask) { - args = ['test:oneshot'] -} - -check.dependsOn(test) -bundle.dependsOn(yarn_install) -assemble.dependsOn(bundle) |