feat(v2): postcss should only use stage 3 features instead of stage 2 (#1872)

This commit is contained in:
Endi 2019-10-24 12:25:10 +07:00 committed by Yangshun Tay
parent 91703eb728
commit 22fb8698c5
2 changed files with 2 additions and 0 deletions

View file

@ -4,6 +4,7 @@
- Add sticky footer.
- Remove empty doc sidebar container
- PostCSS preset env now only polyfills Stage 3 features (previously it was stage 2) like Create React App. Stage 2 CSS is considered relatively unstable and subject to change while Stage 3 features will likely become a standard.
## 2.0.0-alpha.30

View file

@ -54,6 +54,7 @@ export function getStyleLoaders(
autoprefixer: {
flexbox: 'no-2009',
},
stage: 3,
}),
],
},