0.0.3 • Published 5 years ago

@subsetcss/config-helpers v0.0.3

Weekly downloads
4
License
-
Repository
github
Last release
5 years ago

@subsetcss/config-helpers

Helpers for building out .subsetcss.js config files.

Available helpers

getVariables

const { getVariables } = require('@subsetcss/config-helpers');

let colors = getVariables('app/styles/variables.scss');
// colors = [
//   { key: '$primary': value: 'red' },
//   { key: '$secondary': value: 'blue' }
// ]

module.exports = {
  subsets: {
    color: colors.map(c => c.key)
  }
};

Works for files ending in .scss and .less.

Contributing

Check out the Contributing guide.

0.0.3

5 years ago

0.0.2

5 years ago

0.0.1

5 years ago