TypeError while processing `place-*` properties

node v16.18.0
version: 2.0.0
endpointsharetweet
const postcss = require('postcss'); // 8.3.11 const postcssPresetEnv = require('postcss-preset-env'); //7.0.0 const autoprefixer = require('autoprefixer'); // 10.4.0 const YOUR_CSS = ` a { place-self: center; } `; console.log(await postcss([autoprefixer({ overrideBrowserslist: 'defaults' })]) .process(YOUR_CSS, { from: undefined })) // this succeeded console.log(await postcss([postcssPresetEnv({ browsers: 'defaults' })]) .process(YOUR_CSS, { from: undefined })) // this throws
Loading…

no comments

    sign in to comment