From e0c39218d988acc3e9fdd61829118ae5aa33e9a0 Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Wed, 27 Feb 2019 22:29:45 -0800 Subject: [PATCH] tools: use latest rather than next for markdown linting plugin eslint-plugin-markdown is being installed @next to get a bugfix for https://github.com/eslint/eslint-plugin-markdown/issues/69 but that bugfix is in 1.0.0. Go back to installing @latest rather than @next. PR-URL: https://github.com/nodejs/node/pull/26345 Reviewed-By: Ruben Bridgewater Reviewed-By: Richard Lau Reviewed-By: Colin Ihrig --- tools/update-eslint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/update-eslint.sh b/tools/update-eslint.sh index 9a2f5f4401e..ad9bcc8d65c 100755 --- a/tools/update-eslint.sh +++ b/tools/update-eslint.sh @@ -16,7 +16,7 @@ npm init --yes npm install --global-style --no-bin-links --production --no-package-lock eslint@latest cd node_modules/eslint -npm install --no-bin-links --production --no-package-lock eslint-plugin-markdown@next +npm install --no-bin-links --production --no-package-lock eslint-plugin-markdown@latest cd ../.. # Use dmn to remove some unneeded files.