@openedx/frontend-build 15.0.0-alpha.27 → 15.0.0-alpha.28

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -83,7 +83,9 @@ module.exports = merge(commonConfig, {
83
83
  options: {
84
84
  postcssOptions: {
85
85
  plugins: [
86
- PostCssAutoprefixerPlugin(),
86
+ PostCssAutoprefixerPlugin({
87
+ remove: false, // Prevents removing vendor prefixes
88
+ }),
87
89
  PostCssRTLCSS(),
88
90
  PostCssCustomMediaCSS(),
89
91
  ],
@@ -47,7 +47,9 @@ function getStyleUseConfig() {
47
47
  options: {
48
48
  postcssOptions: {
49
49
  plugins: [
50
- PostCssAutoprefixerPlugin(),
50
+ PostCssAutoprefixerPlugin({
51
+ remove: false, // Prevents removing vendor prefixes
52
+ }),
51
53
  PostCssRTLCSS(),
52
54
  PostCssCustomMediaCSS(),
53
55
  ],
@@ -112,7 +112,9 @@ module.exports = merge(commonConfig, {
112
112
  options: {
113
113
  postcssOptions: {
114
114
  plugins: [
115
- PostCssAutoprefixerPlugin(),
115
+ PostCssAutoprefixerPlugin({
116
+ remove: false, // Prevents removing vendor prefixes
117
+ }),
116
118
  PostCssRTLCSS(),
117
119
  PostCssCustomMediaCSS(),
118
120
  CssNano(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openedx/frontend-build",
3
- "version": "15.0.0-alpha.27",
3
+ "version": "15.0.0-alpha.28",
4
4
  "description": "Build tools, setup and config for frontend apps",
5
5
  "publishConfig": {
6
6
  "access": "public"