blob: 201cd6a1c7840fd43871d17856ff09561b5adf3b (
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
34
35
36
37
38
39
40
41
42
43
|
plugins {
id "com.moowork.node" version "1.3.1"
}
apply plugin: 'base'
// Fix for "Could not find org.nodejs:node:10.15.3"
// Gradle node plugin + Gradle metadata seems to need this fix
// https://github.com/JetBrains/kotlin-native/issues/1612
repositories.whenObjectAdded {
if (it instanceof IvyArtifactRepository) {
metadataSources {
artifact()
}
}
}
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)
|