You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-[Configure custom key bindings for extension commands](#configure-custom-key-bindings-for-extension-commands)
76
77
-[Configure custom colors for extension output logs](#configure-custom-colors-for-extension-output-logs)
77
78
-[Set pnpm as package manager](#set-pnpm-as-package-manager)
@@ -995,6 +996,22 @@ To debug Expo applications the extension requires additional dependencies, such
995
996
996
997
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.
997
998
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
+
998
1015
## Configure custom key bindings for extension commands
999
1016
1000
1017
The extension provides context variables for the following features:
0 commit comments