vkalinichev / postcss-rtl

PostCSS plugin for RTL-adaptivity
MIT License
173 stars 33 forks source link

I wanna use this plugin with Laravel mix #12

Closed chadidi closed 7 years ago

chadidi commented 7 years ago

Can you help me out with this i wanna compile a scss file than make two files from the first file both will be saved in diffrent paths .

vkalinichev commented 7 years ago

Do you mean one file for ltr and second for rtl? Then you need RTLCSS.

PostCSS-RTL about combining two-directional styles in single file.

chadidi commented 7 years ago

@vkalinichev Yes this is it . one last question how can i use rtlcss with postcss cause i am just one day with postcss world ?

vkalinichev commented 7 years ago

As I know RTLCSS it's just a regular PostCSS plugin. So you can try something like this:

postcss([ require('rtlcss') ])

See PostCSS usage guide for details