From 9f1cc735abb4ffe85715eaa39a01a9576bc0426b Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Tue, 5 Mar 2019 20:41:35 -0800 Subject: [PATCH] tools: update dmn to 2.2.1 in update scripts dmn 2.2.1 cleans more files than earlier versions. PR-URL: https://github.com/nodejs/node/pull/26462 Reviewed-By: Richard Lau Reviewed-By: Roman Reiss Reviewed-By: Ruben Bridgewater Reviewed-By: Colin Ihrig Reviewed-By: Yuta Hiroto --- tools/update-babel-eslint.sh | 2 +- tools/update-eslint.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/update-babel-eslint.sh b/tools/update-babel-eslint.sh index 59a02090c5e57e..bee6e227f7de51 100755 --- a/tools/update-babel-eslint.sh +++ b/tools/update-babel-eslint.sh @@ -16,7 +16,7 @@ npm init --yes npm install --global-style --no-bin-links --production --no-package-lock babel-eslint@latest # Use dmn to remove some unneeded files. -npx dmn@2.0.0 -f clean +npx dmn@2.2.1 -f clean # Use removeNPMAbsolutePaths to remove unused data in package.json. # This avoids churn as absolute paths can change from one dev to another. npx removeNPMAbsolutePaths@1.0.4 . diff --git a/tools/update-eslint.sh b/tools/update-eslint.sh index ad9bcc8d65ce2c..09a95a20d1dccd 100755 --- a/tools/update-eslint.sh +++ b/tools/update-eslint.sh @@ -20,7 +20,7 @@ npm install --no-bin-links --production --no-package-lock eslint-plugin-markdown cd ../.. # Use dmn to remove some unneeded files. -npx dmn@2.1.0 -f clean +npx dmn@2.2.1 -f clean # Use removeNPMAbsolutePaths to remove unused data in package.json. # This avoids churn as absolute paths can change from one dev to another. npx removeNPMAbsolutePaths@1.0.4 .