Package Exports
- @dr.pogodin/postcss-modules-parser
- @dr.pogodin/postcss-modules-parser/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@dr.pogodin/postcss-modules-parser) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
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.
This is a fork of postcss-icss Git repository, updated to use the latest dependency versions. The Git repo hosts codebases of both postcss-modules-parser (older), and postcss-icss (newer) NPM packages. The present fork updates and releases postcss-modules-parser only.
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('@dr.pogodin/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:
- asynchronous loader: test/helper/async-loader.js
- synchronous loader: test/helper/sync-loader.js