├── .circleci └── config.yml ├── .gitignore ├── .gitpod.yml ├── CONTRIBUTE.md ├── LICENSE ├── README.md ├── index.js ├── package.json └── test ├── .eslintrc.js ├── fixtures ├── between-symbol-selector.css ├── between-symbol-selector.expected.css ├── exclude-selectors.css ├── exclude-selectors.expected.css ├── global-selectors.css ├── global-selectors.expected.css ├── group-selectors.css ├── group-selectors.expected.css ├── ignore-files.css ├── ignore-files.expected.css ├── include-files.css ├── include-files.expected.css ├── keyframes.css ├── keyframes.expected.css ├── nested-selectors.expected.css ├── nested-selectors.postcss ├── pseudo-classes.css ├── pseudo-classes.expected.css ├── single-long-selector.css ├── single-long-selector.expected.css ├── single-selector.css ├── single-selector.expected.css ├── transform-by-rule-root.css ├── transform-by-rule-root.expected.css ├── transform-by-rule.css ├── transform-by-rule.expected.css ├── transform.css └── transform.expected.css └── test.js /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadValentin/postcss-prefix-selector/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store* 3 | *.log 4 | *.gz 5 | 6 | node_modules 7 | coverage 8 | -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadValentin/postcss-prefix-selector/HEAD/.gitpod.yml -------------------------------------------------------------------------------- /CONTRIBUTE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadValentin/postcss-prefix-selector/HEAD/CONTRIBUTE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadValentin/postcss-prefix-selector/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadValentin/postcss-prefix-selector/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadValentin/postcss-prefix-selector/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadValentin/postcss-prefix-selector/HEAD/package.json -------------------------------------------------------------------------------- /test/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadValentin/postcss-prefix-selector/HEAD/test/.eslintrc.js -------------------------------------------------------------------------------- /test/fixtures/between-symbol-selector.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadValentin/postcss-prefix-selector/HEAD/test/fixtures/between-symbol-selector.css -------------------------------------------------------------------------------- /test/fixtures/between-symbol-selector.expected.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadValentin/postcss-prefix-selector/HEAD/test/fixtures/between-symbol-selector.expected.css -------------------------------------------------------------------------------- /test/fixtures/exclude-selectors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadValentin/postcss-prefix-selector/HEAD/test/fixtures/exclude-selectors.css -------------------------------------------------------------------------------- /test/fixtures/exclude-selectors.expected.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadValentin/postcss-prefix-selector/HEAD/test/fixtures/exclude-selectors.expected.css -------------------------------------------------------------------------------- /test/fixtures/global-selectors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadValentin/postcss-prefix-selector/HEAD/test/fixtures/global-selectors.css -------------------------------------------------------------------------------- /test/fixtures/global-selectors.expected.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadValentin/postcss-prefix-selector/HEAD/test/fixtures/global-selectors.expected.css -------------------------------------------------------------------------------- /test/fixtures/group-selectors.css: -------------------------------------------------------------------------------- 1 | .a, 2 | .b { 3 | color: coral; 4 | } 5 | -------------------------------------------------------------------------------- /test/fixtures/group-selectors.expected.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadValentin/postcss-prefix-selector/HEAD/test/fixtures/group-selectors.expected.css -------------------------------------------------------------------------------- /test/fixtures/ignore-files.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadValentin/postcss-prefix-selector/HEAD/test/fixtures/ignore-files.css -------------------------------------------------------------------------------- /test/fixtures/ignore-files.expected.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadValentin/postcss-prefix-selector/HEAD/test/fixtures/ignore-files.expected.css -------------------------------------------------------------------------------- /test/fixtures/include-files.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadValentin/postcss-prefix-selector/HEAD/test/fixtures/include-files.css -------------------------------------------------------------------------------- /test/fixtures/include-files.expected.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadValentin/postcss-prefix-selector/HEAD/test/fixtures/include-files.expected.css -------------------------------------------------------------------------------- /test/fixtures/keyframes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadValentin/postcss-prefix-selector/HEAD/test/fixtures/keyframes.css -------------------------------------------------------------------------------- /test/fixtures/keyframes.expected.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadValentin/postcss-prefix-selector/HEAD/test/fixtures/keyframes.expected.css -------------------------------------------------------------------------------- /test/fixtures/nested-selectors.expected.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadValentin/postcss-prefix-selector/HEAD/test/fixtures/nested-selectors.expected.css -------------------------------------------------------------------------------- /test/fixtures/nested-selectors.postcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadValentin/postcss-prefix-selector/HEAD/test/fixtures/nested-selectors.postcss -------------------------------------------------------------------------------- /test/fixtures/pseudo-classes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadValentin/postcss-prefix-selector/HEAD/test/fixtures/pseudo-classes.css -------------------------------------------------------------------------------- /test/fixtures/pseudo-classes.expected.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadValentin/postcss-prefix-selector/HEAD/test/fixtures/pseudo-classes.expected.css -------------------------------------------------------------------------------- /test/fixtures/single-long-selector.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadValentin/postcss-prefix-selector/HEAD/test/fixtures/single-long-selector.css -------------------------------------------------------------------------------- /test/fixtures/single-long-selector.expected.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadValentin/postcss-prefix-selector/HEAD/test/fixtures/single-long-selector.expected.css -------------------------------------------------------------------------------- /test/fixtures/single-selector.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadValentin/postcss-prefix-selector/HEAD/test/fixtures/single-selector.css -------------------------------------------------------------------------------- /test/fixtures/single-selector.expected.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadValentin/postcss-prefix-selector/HEAD/test/fixtures/single-selector.expected.css -------------------------------------------------------------------------------- /test/fixtures/transform-by-rule-root.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadValentin/postcss-prefix-selector/HEAD/test/fixtures/transform-by-rule-root.css -------------------------------------------------------------------------------- /test/fixtures/transform-by-rule-root.expected.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadValentin/postcss-prefix-selector/HEAD/test/fixtures/transform-by-rule-root.expected.css -------------------------------------------------------------------------------- /test/fixtures/transform-by-rule.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadValentin/postcss-prefix-selector/HEAD/test/fixtures/transform-by-rule.css -------------------------------------------------------------------------------- /test/fixtures/transform-by-rule.expected.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadValentin/postcss-prefix-selector/HEAD/test/fixtures/transform-by-rule.expected.css -------------------------------------------------------------------------------- /test/fixtures/transform.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadValentin/postcss-prefix-selector/HEAD/test/fixtures/transform.css -------------------------------------------------------------------------------- /test/fixtures/transform.expected.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadValentin/postcss-prefix-selector/HEAD/test/fixtures/transform.expected.css -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadValentin/postcss-prefix-selector/HEAD/test/test.js --------------------------------------------------------------------------------