From 4de99b518ad2f5353409c548ff6e43d24526af52 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Garc=C3=ADa=20Aubert?= Date: Wed, 27 May 2020 15:08:50 +0200 Subject: [PATCH] Allow Node.js 12 to build assets --- Gruntfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gruntfile.js b/Gruntfile.js index 0a93dac4eb..49d7f69745 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -7,7 +7,7 @@ var lockedDependencies = require('./lib/build/tasks/locked-dependencies.js'); var webpackTask = null; var EDITOR_ASSETS_VERSION = require('./config/editor_assets_version.json').version; -var REQUIRED_NODE_VERSIONS = ['10.x']; +var REQUIRED_NODE_VERSIONS = ['10.x', '12.x']; var REQUIRED_NPM_VERSIONS = ['6.x']; var DEVELOPMENT = 'development';