Jackardios / css-to-tailwindcss

Convert CSS to TailwindCSS 3.x
MIT License
114 stars 14 forks source link

feat: Add ConverterOptions #18

Open Sarfraz-droid opened 2 months ago

Sarfraz-droid commented 2 months ago

Description of change

Hey @Jackardios , was trying to work with this lib but wanted a feature where I just needed the tailwind classes and parsed css separately. Would love to have an option like ConverterOptions to include such flags within the package.

Usage


const inputCSS = `
.foo {
  padding-left : 25px
}
`

const converter = new TailwindConverter();

converter
  .convertCSS(inputCSS, {
    skipAddingTailwindClasses: true,
  })

Pull-Request Checklist