From 3b414d1077e15c4a58f24b2c9148539db44347d6 Mon Sep 17 00:00:00 2001 From: Yuri Kuznetsov Date: Fri, 11 Feb 2022 12:28:16 +0200 Subject: [PATCH] use npm ci --- Gruntfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gruntfile.js b/Gruntfile.js index 369887b6b2..165433f3ed 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -405,7 +405,7 @@ module.exports = grunt => { }); grunt.registerTask('npm-install', () => { - cp.execSync("npm install", {stdio: 'ignore'}); + cp.execSync("npm ci", {stdio: 'ignore'}); }); grunt.loadNpmTasks('grunt-contrib-clean');