We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0c055f1 commit 1e11377Copy full SHA for 1e11377
1 file changed
ddriver-solution.md
@@ -0,0 +1,11 @@
1
+1. Locate the `package.json` file for the web workspace.
2
+2. Add an `overrides` field to the `package.json` file, specifying `postcss` with the version `8.5.10`.
3
+ Example:
4
+ ```json
5
+ "overrides": {
6
+ "postcss": "8.5.10"
7
+ }
8
+ ```
9
+3. Run `npm install` in the web workspace directory to apply the override and update `package-lock.json`.
10
+4. Verify the fix by running `npm audit --omit=dev` and confirming the PostCSS advisory is resolved.
11
+5. Optionally, run `npm ls postcss --all` to confirm `postcss@8.5.10` is now resolved.
0 commit comments