You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 11, 2022. It is now read-only.
module.exports=function(opts){// work with optionsreturnfunction(css){// work with AST};};module.exports.postcss=function(css){module.exports()(css);};
The text was updated successfully, but these errors were encountered:
Most of PostCSS plugins works as
plugin
instead ofplugin()
if there is no options.I make this behavior by:
The text was updated successfully, but these errors were encountered: