summaryrefslogtreecommitdiff
path: root/frontend/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/build.gradle')
-rw-r--r--frontend/build.gradle6
1 files changed, 3 insertions, 3 deletions
diff --git a/frontend/build.gradle b/frontend/build.gradle
index 46e751a6..61f01053 100644
--- a/frontend/build.gradle
+++ b/frontend/build.gradle
@@ -1,5 +1,5 @@
plugins {
- id "com.moowork.node" version "1.2.0"
+ id "com.moowork.node" version "1.3.1"
}
apply plugin: 'base'
@@ -7,8 +7,8 @@ apply plugin: 'base'
buildDir = 'build'
node {
- version = '8.11.1'
- yarnVersion = '1.6.0'
+ version = '10.15.3'
+ yarnVersion = '1.16.0'
download = true
}
bgstack15