Skip to content

Commit d1649f5

Browse files
authored
Merge branch 'master' into exclude-auto-generated-mochawesome-test-reports
2 parents 061c72f + 8b5cb29 commit d1649f5

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

README.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ Using this extension, you can **debug your code and quickly run `react-native` o
7272
- [Change project root](#change-project-root)
7373
- [Configure an Android LogCat Monitor](#configure-an-android-logcat-monitor)
7474
- [Configure dependencies versions for debugging Expo projects](#configure-dependencies-versions-for-debugging-expo-projects)
75+
- [Security dependency overrides](#security-dependency-overrides)
7576
- [Configure custom key bindings for extension commands](#configure-custom-key-bindings-for-extension-commands)
7677
- [Configure custom colors for extension output logs](#configure-custom-colors-for-extension-output-logs)
7778
- [Set pnpm as package manager](#set-pnpm-as-package-manager)
@@ -995,6 +996,22 @@ To debug Expo applications the extension requires additional dependencies, such
995996

996997
To enable new versions of the dependencies, it's required to restart VS Code editor. After that the extension will download the new versions of the packages on the next Expo debugging starting.
997998

999+
## Security dependency overrides
1000+
1001+
Recent repository updates include a security pin for `serialize-javascript` via npm `overrides`.
1002+
If you maintain a fork or run local dependency audits, align your `package.json` with the following:
1003+
1004+
```json
1005+
{
1006+
"overrides": {
1007+
"js-yaml": "4.1.1",
1008+
"serialize-javascript": "7.0.5"
1009+
}
1010+
}
1011+
```
1012+
1013+
After updating `package.json`, run your package manager install command to refresh the lock file.
1014+
9981015
## Configure custom key bindings for extension commands
9991016

10001017
The extension provides context variables for the following features:

0 commit comments

Comments
 (0)