summaryrefslogtreecommitdiff
path: root/frontend/build.gradle
blob: 42e646a3797f5fa91405d22e70827391c358f5bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
plugins {
    id "com.moowork.node" version "1.1.1"
}

apply plugin: 'base'
apply plugin: 'idea'

buildDir = 'build'

node {
    version = '6.9.4'
    yarnVersion = '0.19.1'
    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']
}

check.dependsOn(test)
bundle.dependsOn(npm_install)
assemble.dependsOn(bundle)
bgstack15