-
Notifications
You must be signed in to change notification settings - Fork 29.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tools: update dmn to 2.2.1 in update scripts
dmn 2.2.1 cleans more files than earlier versions. PR-URL: #26462 Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Roman Reiss <[email protected]> Reviewed-By: Ruben Bridgewater <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Yuta Hiroto <[email protected]>
- Loading branch information
Showing
2 changed files
with
2 additions
and
2 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 |
---|---|---|
|
@@ -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@2.0.0 -f clean | ||
npx dmn@2.2.1 -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 [email protected] . | ||
|
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 |
---|---|---|
|
@@ -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@2.1.0 -f clean | ||
npx dmn@2.2.1 -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 [email protected] . | ||
|