From 5f7fad304386b75d7a5649fbdef6819078745421 Mon Sep 17 00:00:00 2001 From: Mark Lee Date: Sun, 8 Nov 2020 20:16:39 -0800 Subject: [PATCH] build: add cross-zip & webpack to the do not upgrade list --- tools/update-dependencies.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tools/update-dependencies.js b/tools/update-dependencies.js index 5bcc1a7c9b..e7be8976bf 100755 --- a/tools/update-dependencies.js +++ b/tools/update-dependencies.js @@ -6,7 +6,9 @@ const { spawn } = require('@malept/cross-spawn-promise') const DO_NOT_UPGRADE = [ '@typescript-eslint/eslint-plugin', // special case - 'commander' + 'commander', // TODO: convert to yargs + 'cross-zip', // >= 4.0.0 requires Node 12 + 'webpack' // Lots of incompatibilities between v4 and v5 ] /**