postcss-modules-parser

1.1.1 • Public • Published

postcss-modules-parser

A CSS Modules parser to extract tokens from the css file. Provides opportunity to process multiple files. Supports both synchronous and asynchronous file loaders.

API

In order to use it you should provide a fetch function which should load contents of files and process it with the PostCSS instance. fetch function should return tokens or promise object which will resolve into tokens.

var Parser = require('postcss-modules-parser');
 
/**
 * @param  {string} to   Path to the new file. Could be any.
 * @param  {string} from Path to the source file. Should be absolute.
 * @return {object}      Tokens
 */
function fetch(to, from) {
  // load content
  return instance.process(css, {from: filename}).root.tokens;
}
 
new Parser({fetch: fetch});

See the examples:

Versions

Current Tags

VersionDownloads (Last 7 Days)Tag
1.1.130,672latest

Version History

VersionDownloads (Last 7 Days)Published
1.1.130,672
1.1.032
1.0.10

Package Sidebar

Install

npm i postcss-modules-parser

Weekly Downloads

30,704

Version

1.1.1

License

MIT

Last publish

Collaborators

  • sullenor
  • evilebottnawi