-
Notifications
You must be signed in to change notification settings - Fork 24.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Format package.json files in the monorepo (#42256)
Summary: Over in React Native macOS land, I opened microsoft#2030 to update our mono repo to use Yarn 4. As a side effect, all the `package.json` files are formatted as a side effect of running `yarn install`. So that React Native macOS doesn't maintain this diff (and because they should only be good / no harm), let's upstream the formatting changes. ## Changelog: [INTERNAL] [CHANGED] - Format package.json files in the monorepo Pull Request resolved: #42256 Test Plan: This change should be a no-op, CI should pass. Reviewed By: cortinico Differential Revision: D52727623 Pulled By: huntie fbshipit-source-id: 67862b16d576b0903abd91e016d7add4c19853dc
- Loading branch information
1 parent
c92f7e5
commit 6d77d7b
Showing
6 changed files
with
13 additions
and
15 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
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
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
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 |
---|---|---|
|
@@ -31,7 +31,5 @@ | |
"gradlew.bat", | ||
"src/main", | ||
"README.md" | ||
], | ||
"dependencies": {}, | ||
"devDependencies": {} | ||
] | ||
} |
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
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 |
---|---|---|
|
@@ -6,20 +6,20 @@ | |
"description": "React Native E2E tester app.", | ||
"homepage": "https://github.com/facebook/react-native/tree/HEAD/packages/rn-tester-e2e", | ||
"repository": { | ||
"type": "git", | ||
"url": "[email protected]:facebook/react-native.git", | ||
"directory": "packages/rn-tester-e2e" | ||
"type": "git", | ||
"url": "[email protected]:facebook/react-native.git", | ||
"directory": "packages/rn-tester-e2e" | ||
}, | ||
"scripts": { | ||
"test-e2e": "node ./../../scripts/e2e/run-e2e-tests.js" | ||
}, | ||
"devDependencies": { | ||
"eslint": "^8.19.0", | ||
"jest": "^29.6.3", | ||
"webdriverio": "^7.32.0", | ||
"@babel/core": "^7.20.0", | ||
"@babel/preset-env": "^7.20.0", | ||
"@babel/plugin-transform-flow-strip-types": "^7.20.0", | ||
"@types/jest": "^29.5.3" | ||
"@babel/preset-env": "^7.20.0", | ||
"@types/jest": "^29.5.3", | ||
"eslint": "^8.19.0", | ||
"jest": "^29.6.3", | ||
"webdriverio": "^7.32.0" | ||
} | ||
} |