From 263979690557a2767124d48fd30adde73b0a6ded Mon Sep 17 00:00:00 2001 From: Rahul Kumar Date: Fri, 20 Mar 2026 10:58:26 +0530 Subject: [PATCH] uild Tools: Replace deprecated browserslist --update-db command --- Gruntfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gruntfile.js b/Gruntfile.js index d6b33d391e6d5..1c4bcca39593b 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -2221,7 +2221,7 @@ module.exports = function(grunt) { grunt.registerTask( 'browserslist:update', 'Update the local database of browser supports', function() { grunt.log.writeln( `Updating browsers list` ); - spawn( 'npx', [ 'browserslist@latest', '--update-db' ], { + spawn( 'npx', [ 'update-browserslist-db@latest' ], { cwd: __dirname, stdio: 'inherit', } );