xtf e538decb69 药品分类 11 months atrás
..
CHANGELOG.md e538decb69 药品分类 11 months atrás
LICENSE e538decb69 药品分类 11 months atrás
README.md e538decb69 药品分类 11 months atrás
index.js e538decb69 药品分类 11 months atrás
package.json e538decb69 药品分类 11 months atrás

README.md

Build Status codecov npm

CSS Modules: Local by Default

Transformation examples:

.foo { ... } /* => */ :local(.foo) { ... }

.foo .bar { ... } /* => */ :local(.foo) :local(.bar) { ... }

/* Shorthand global selector */

:global .foo .bar { ... } /* => */ .foo .bar { ... }

.foo :global .bar { ... } /* => */ :local(.foo) .bar { ... }

/* Targeted global selector */

:global(.foo) .bar { ... } /* => */ .foo :local(.bar) { ... }

.foo:global(.bar) { ... } /* => */ :local(.foo).bar { ... }

.foo :global(.bar) .baz { ... } /* => */ :local(.foo) .bar :local(.baz) { ... }

.foo:global(.bar) .baz { ... } /* => */ :local(.foo).bar :local(.baz) { ... }

Building

$ npm install
$ npm test
  • Build: Build Status
  • Lines: coveralls
  • Statements: codecov

Development

$ npm run autotest

License

MIT

With thanks


Mark Dalgleish, 2015.