Skip to content

Commit 4423200

Browse files
Fix jsinterop yarn install (#29470)
We moved all our npm projects to `yarn install --mutex network` to fix issues with yarn running in parallel, but this project wasn't in the repo at the time and didn't get the same treatment.
1 parent 1f4a3eb commit 4423200

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/JSInterop/Microsoft.JSInterop.JS/src/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"main": "dist/Microsoft.JSInterop.js",
66
"types": "dist/Microsoft.JSInterop.d.ts",
77
"scripts": {
8-
"preclean": "yarn install",
8+
"preclean": "yarn install --mutex network",
99
"clean": "node node_modules/rimraf/bin.js ./dist",
1010
"build": "npm run clean && npm run build:esm",
1111
"build:lint": "node node_modules/tslint/bin/tslint -p ./tsconfig.json",

0 commit comments

Comments
 (0)