From 21fe26d04232255b3619b36459f9db9645a427ed Mon Sep 17 00:00:00 2001 From: Yuri Kuznetsov Date: Sat, 26 Jun 2021 18:51:35 +0300 Subject: [PATCH] npm-install ignore output --- Gruntfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gruntfile.js b/Gruntfile.js index 7880d2d4ab..237c8ec426 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -336,7 +336,7 @@ module.exports = grunt => { }); grunt.registerTask('npm-install', () => { - cp.execSync("npm install", {stdio: 'inherit'}); + cp.execSync("npm install", {stdio: 'ignore'}); }); grunt.loadNpmTasks('grunt-contrib-clean');