From 955a8e1016b67228f1bf0cd09ed5c0632b9838de 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 New version of dmn with better support for case-sensitive file systems. Use it in the update-* scripts. --- 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 .