summaryrefslogtreecommitdiff
path: root/frontend/build.gradle
diff options
context:
space:
mode:
authorJoffrey BION <joffrey.bion@gmail.com>2019-05-16 23:48:38 +0200
committerJoffrey BION <joffrey.bion@gmail.com>2019-05-16 23:48:38 +0200
commit2382a452456e4bdef4584e1046925e372624cb79 (patch)
tree0e49b2e5d81facb55fb8b08228abeb218a27d466 /frontend/build.gradle
parentRemove GRADLE_METADATA feature to avoid breaking frontend build (diff)
downloadseven-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.gradle32
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)
bgstack15