diff options
author | Rich Trott <rtrott@gmail.com> | 2019-02-27 22:29:45 -0800 |
---|---|---|
committer | Anna Henningsen <anna@addaleax.net> | 2019-03-02 14:21:11 +0100 |
commit | adcbcf5bd60442eebd1af33e3df2ab1a12fd0275 (patch) | |
tree | 5b62684abf6bc9eb470bbea9ecc74690043fcf52 /tools | |
parent | 3560c3abeba0208c571bdcebdefa1c311c9e7cd2 (diff) | |
download | node-new-adcbcf5bd60442eebd1af33e3df2ab1a12fd0275.tar.gz |
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 <ruben@bridgewater.de>
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/update-eslint.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/update-eslint.sh b/tools/update-eslint.sh index 9a2f5f4401..ad9bcc8d65 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. |