├── .editorconfig ├── .github ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .npmignore ├── .travis.yml ├── CHANGELOG.md ├── INDEX.md ├── LICENSE ├── README.md ├── index.js ├── lib └── plugins.js ├── logo.svg ├── package.json └── test ├── err ├── array │ └── postcss.config.js ├── index.js ├── object │ └── postcss.config.js └── plugin.js ├── js ├── array │ ├── expect │ │ ├── index.css │ │ └── index.sss │ ├── fixtures │ │ ├── imports │ │ │ ├── section.css │ │ │ └── section.sss │ │ ├── index.css │ │ └── index.sss │ ├── index.js │ └── postcss.config.js └── object │ ├── expect │ ├── index.css │ └── index.sss │ ├── fixtures │ ├── imports │ │ ├── section.css │ │ └── section.sss │ ├── index.css │ └── index.sss │ ├── index.js │ └── postcss.config.js ├── pkg ├── expect │ ├── index.css │ └── index.sss ├── fixtures │ ├── imports │ │ ├── section.css │ │ └── section.sss │ ├── index.css │ └── index.sss ├── index.js └── package.json └── rc ├── .postcssrc ├── expect ├── index.css └── index.sss ├── fixtures ├── imports │ ├── section.css │ └── section.sss ├── index.css └── index.sss └── index.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-ciniawsky/postcss-load-plugins/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-ciniawsky/postcss-load-plugins/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-ciniawsky/postcss-load-plugins/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-ciniawsky/postcss-load-plugins/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-ciniawsky/postcss-load-plugins/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-ciniawsky/postcss-load-plugins/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-ciniawsky/postcss-load-plugins/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /INDEX.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-ciniawsky/postcss-load-plugins/HEAD/INDEX.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-ciniawsky/postcss-load-plugins/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-ciniawsky/postcss-load-plugins/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-ciniawsky/postcss-load-plugins/HEAD/index.js -------------------------------------------------------------------------------- /lib/plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-ciniawsky/postcss-load-plugins/HEAD/lib/plugins.js -------------------------------------------------------------------------------- /logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-ciniawsky/postcss-load-plugins/HEAD/logo.svg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-ciniawsky/postcss-load-plugins/HEAD/package.json -------------------------------------------------------------------------------- /test/err/array/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-ciniawsky/postcss-load-plugins/HEAD/test/err/array/postcss.config.js -------------------------------------------------------------------------------- /test/err/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-ciniawsky/postcss-load-plugins/HEAD/test/err/index.js -------------------------------------------------------------------------------- /test/err/object/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-ciniawsky/postcss-load-plugins/HEAD/test/err/object/postcss.config.js -------------------------------------------------------------------------------- /test/err/plugin.js: -------------------------------------------------------------------------------- 1 | module.exports = {} 2 | -------------------------------------------------------------------------------- /test/js/array/expect/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-ciniawsky/postcss-load-plugins/HEAD/test/js/array/expect/index.css -------------------------------------------------------------------------------- /test/js/array/expect/index.sss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-ciniawsky/postcss-load-plugins/HEAD/test/js/array/expect/index.sss -------------------------------------------------------------------------------- /test/js/array/fixtures/imports/section.css: -------------------------------------------------------------------------------- 1 | .import { 2 | color: goldenrod; 3 | } 4 | -------------------------------------------------------------------------------- /test/js/array/fixtures/imports/section.sss: -------------------------------------------------------------------------------- 1 | .import 2 | color: goldenrod 3 | -------------------------------------------------------------------------------- /test/js/array/fixtures/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-ciniawsky/postcss-load-plugins/HEAD/test/js/array/fixtures/index.css -------------------------------------------------------------------------------- /test/js/array/fixtures/index.sss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-ciniawsky/postcss-load-plugins/HEAD/test/js/array/fixtures/index.sss -------------------------------------------------------------------------------- /test/js/array/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-ciniawsky/postcss-load-plugins/HEAD/test/js/array/index.js -------------------------------------------------------------------------------- /test/js/array/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-ciniawsky/postcss-load-plugins/HEAD/test/js/array/postcss.config.js -------------------------------------------------------------------------------- /test/js/object/expect/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-ciniawsky/postcss-load-plugins/HEAD/test/js/object/expect/index.css -------------------------------------------------------------------------------- /test/js/object/expect/index.sss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-ciniawsky/postcss-load-plugins/HEAD/test/js/object/expect/index.sss -------------------------------------------------------------------------------- /test/js/object/fixtures/imports/section.css: -------------------------------------------------------------------------------- 1 | .import { 2 | color: goldenrod; 3 | } 4 | -------------------------------------------------------------------------------- /test/js/object/fixtures/imports/section.sss: -------------------------------------------------------------------------------- 1 | .import 2 | color: goldenrod 3 | -------------------------------------------------------------------------------- /test/js/object/fixtures/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-ciniawsky/postcss-load-plugins/HEAD/test/js/object/fixtures/index.css -------------------------------------------------------------------------------- /test/js/object/fixtures/index.sss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-ciniawsky/postcss-load-plugins/HEAD/test/js/object/fixtures/index.sss -------------------------------------------------------------------------------- /test/js/object/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-ciniawsky/postcss-load-plugins/HEAD/test/js/object/index.js -------------------------------------------------------------------------------- /test/js/object/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-ciniawsky/postcss-load-plugins/HEAD/test/js/object/postcss.config.js -------------------------------------------------------------------------------- /test/pkg/expect/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-ciniawsky/postcss-load-plugins/HEAD/test/pkg/expect/index.css -------------------------------------------------------------------------------- /test/pkg/expect/index.sss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-ciniawsky/postcss-load-plugins/HEAD/test/pkg/expect/index.sss -------------------------------------------------------------------------------- /test/pkg/fixtures/imports/section.css: -------------------------------------------------------------------------------- 1 | .import { 2 | color: goldenrod; 3 | } 4 | -------------------------------------------------------------------------------- /test/pkg/fixtures/imports/section.sss: -------------------------------------------------------------------------------- 1 | .import 2 | color: goldenrod 3 | -------------------------------------------------------------------------------- /test/pkg/fixtures/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-ciniawsky/postcss-load-plugins/HEAD/test/pkg/fixtures/index.css -------------------------------------------------------------------------------- /test/pkg/fixtures/index.sss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-ciniawsky/postcss-load-plugins/HEAD/test/pkg/fixtures/index.sss -------------------------------------------------------------------------------- /test/pkg/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-ciniawsky/postcss-load-plugins/HEAD/test/pkg/index.js -------------------------------------------------------------------------------- /test/pkg/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-ciniawsky/postcss-load-plugins/HEAD/test/pkg/package.json -------------------------------------------------------------------------------- /test/rc/.postcssrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-ciniawsky/postcss-load-plugins/HEAD/test/rc/.postcssrc -------------------------------------------------------------------------------- /test/rc/expect/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-ciniawsky/postcss-load-plugins/HEAD/test/rc/expect/index.css -------------------------------------------------------------------------------- /test/rc/expect/index.sss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-ciniawsky/postcss-load-plugins/HEAD/test/rc/expect/index.sss -------------------------------------------------------------------------------- /test/rc/fixtures/imports/section.css: -------------------------------------------------------------------------------- 1 | .import { 2 | color: goldenrod; 3 | } 4 | -------------------------------------------------------------------------------- /test/rc/fixtures/imports/section.sss: -------------------------------------------------------------------------------- 1 | .import 2 | color: goldenrod 3 | -------------------------------------------------------------------------------- /test/rc/fixtures/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-ciniawsky/postcss-load-plugins/HEAD/test/rc/fixtures/index.css -------------------------------------------------------------------------------- /test/rc/fixtures/index.sss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-ciniawsky/postcss-load-plugins/HEAD/test/rc/fixtures/index.sss -------------------------------------------------------------------------------- /test/rc/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-ciniawsky/postcss-load-plugins/HEAD/test/rc/index.js --------------------------------------------------------------------------------