-
Notifications
You must be signed in to change notification settings - Fork 29.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tools: make update-eslint.sh work with npm@9
Make the `update-eslint.sh` script work with `npm@9`. PR-URL: #46088 Refs: https://github.com/nodejs/node/actions/runs/3814364920/jobs/6488613583#step:3:64 Reviewed-By: Ruy Adorno <[email protected]> Reviewed-By: Antoine du Hamel <[email protected]>
- Loading branch information
Showing
1 changed file
with
34 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,13 +21,41 @@ rm -rf node_modules/eslint | |
|
||
"$NODE" "$NPM" init --yes | ||
|
||
"$NODE" "$NPM" install --global-style --no-bin-links --ignore-scripts eslint | ||
# Uninstall plugins that we want to install so that they are removed from devDependencies. | ||
# Otherwise --production will cause them to be skipped. | ||
(cd node_modules/eslint && "$NODE" "$NPM" uninstall --ignore-scripts eslint-plugin-jsdoc eslint-plugin-markdown @babel/core @babel/eslint-parser @babel/plugin-syntax-import-assertions) | ||
(cd node_modules/eslint && "$NODE" "$NPM" install --no-save --no-bin-links --ignore-scripts --production --omit=peer eslint-plugin-jsdoc eslint-plugin-markdown @babel/core @babel/eslint-parser @babel/plugin-syntax-import-assertions) | ||
"$NODE" "$NPM" install \ | ||
--ignore-scripts \ | ||
--install-strategy=shallow \ | ||
--no-bin-links \ | ||
eslint | ||
# Uninstall plugins that we want to install so that they are removed from | ||
# devDependencies. Otherwise --omit=dev will cause them to be skipped. | ||
( | ||
cd node_modules/eslint | ||
"$NODE" "$NPM" uninstall \ | ||
--install-links=false \ | ||
--ignore-scripts \ | ||
eslint-plugin-jsdoc \ | ||
eslint-plugin-markdown \ | ||
@babel/core \ | ||
@babel/eslint-parser \ | ||
@babel/plugin-syntax-import-assertions | ||
) | ||
( | ||
cd node_modules/eslint | ||
"$NODE" "$NPM" install \ | ||
--ignore-scripts \ | ||
--install-links=false \ | ||
--no-bin-links \ | ||
--no-save \ | ||
--omit=dev \ | ||
--omit=peer \ | ||
eslint-plugin-jsdoc \ | ||
eslint-plugin-markdown \ | ||
@babel/core \ | ||
@babel/eslint-parser \ | ||
@babel/plugin-syntax-import-assertions | ||
) | ||
# Use dmn to remove some unneeded files. | ||
"$NODE" "$NPM" exec -- [email protected] -f clean | ||
"$NODE" "$NPM" exec --package=[email protected] --yes -- dmn -f clean | ||
# TODO: Get this into dmn. | ||
find node_modules -name .package-lock.json -exec rm {} \; | ||
find node_modules -name 'README*' -exec rm {} \; | ||
|