1
0
mirror of https://github.com/locomotivemtl/locomotive-boilerplate.git synced 2026-01-15 00:55:08 +08:00

Fix NPM dependency constraints on svg-mixer

Changed:
- Fixed svg-mixer constraint from `^2.3.14` to `~2.3.14` to stay within `2.3` range since `2.4.0` appears to be an anomaly.
- Overrode postcss constraint in svg-mixer from `^6.0.21` to `^8.4.20` to fix security notice.
This commit is contained in:
Chauncey McAskill
2023-01-04 10:47:23 -05:00
parent e7e343e62c
commit 56d255eac8
2 changed files with 16 additions and 36 deletions

View File

@@ -30,7 +30,12 @@
"node-sass": "^8.0.0",
"postcss": "^8.4.20",
"purgecss": "^5.0.0",
"svg-mixer": "^2.3.14",
"svg-mixer": "~2.3.14",
"tiny-glob": "^0.2.9"
},
"overrides": {
"svg-mixer": {
"postcss": "^8.4.20"
}
}
}