├── .gitignore ├── .npmignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── index.js ├── package.json └── test ├── fixtures ├── any-pattern-works.css ├── any-pattern-works.expected.css ├── correct-arm-expression-chosen.css ├── correct-arm-expression-chosen.expected.css ├── multiple-patterns-works.css ├── multiple-patterns-works.expected.css ├── multiple-properties-in-expression-works.css └── multiple-properties-in-expression-works.expected.css └── index.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | npm-debug.log 3 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtsao/postcss-match/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtsao/postcss-match/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtsao/postcss-match/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtsao/postcss-match/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtsao/postcss-match/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtsao/postcss-match/HEAD/package.json -------------------------------------------------------------------------------- /test/fixtures/any-pattern-works.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtsao/postcss-match/HEAD/test/fixtures/any-pattern-works.css -------------------------------------------------------------------------------- /test/fixtures/any-pattern-works.expected.css: -------------------------------------------------------------------------------- 1 | .blah { 2 | font-weight: bold 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/correct-arm-expression-chosen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtsao/postcss-match/HEAD/test/fixtures/correct-arm-expression-chosen.css -------------------------------------------------------------------------------- /test/fixtures/correct-arm-expression-chosen.expected.css: -------------------------------------------------------------------------------- 1 | .blah { 2 | background: green 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/multiple-patterns-works.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtsao/postcss-match/HEAD/test/fixtures/multiple-patterns-works.css -------------------------------------------------------------------------------- /test/fixtures/multiple-patterns-works.expected.css: -------------------------------------------------------------------------------- 1 | .blah { 2 | background: green 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/multiple-properties-in-expression-works.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtsao/postcss-match/HEAD/test/fixtures/multiple-properties-in-expression-works.css -------------------------------------------------------------------------------- /test/fixtures/multiple-properties-in-expression-works.expected.css: -------------------------------------------------------------------------------- 1 | .blah { 2 | font-weight: bold; 3 | color: orange 4 | } 5 | -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtsao/postcss-match/HEAD/test/index.js --------------------------------------------------------------------------------