From 7a50dbadd954bcf036741ffed9f098146409bca3 Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Thu, 6 Sep 2018 11:42:35 -0700 Subject: [PATCH] tools: update dmn to 2.0.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit New version of dmn with better support for case-sensitive file systems. Use it in the update-* scripts. PR-URL: https://github.com/nodejs/node/pull/22733 Reviewed-By: Roman Reiss Reviewed-By: Ruben Bridgewater Reviewed-By: Richard Lau Reviewed-By: Colin Ihrig Reviewed-By: Michaƫl Zasso --- 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 6e5971e4ef69ca..59a02090c5e57e 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@1.0.11 -f clean +npx dmn@2.0.0 -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 301dd334d84331..86c597336a8f18 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@1.0.11 -f clean +npx dmn@2.0.0 -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 .