├── .editorconfig ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── index.js ├── lib ├── add-prefix.js ├── has-extensions.js ├── has-prefix.js ├── resolve-glob.js └── resolve-module.js ├── package.json ├── test ├── easy-import.js ├── fixtures │ ├── glob │ │ ├── ext │ │ ├── ext.css │ │ ├── ext.scss │ │ ├── foo.css │ │ ├── path-1 │ │ │ ├── 1.4.path.css │ │ │ ├── path.1-1.css │ │ │ ├── path.1-2 │ │ │ └── path.1.3.scss │ │ ├── path-2 │ │ │ ├── 2.css │ │ │ ├── path.2 │ │ │ ├── path.2.css │ │ │ └── path.2.scss │ │ ├── path.0.css │ │ ├── prefixed │ │ │ ├── _prefix.foo.css │ │ │ ├── _prefix.foo.scss │ │ │ ├── prefix.foo.css │ │ │ ├── prefix.foo.scss │ │ │ └── without │ │ │ │ ├── _baz.css │ │ │ │ ├── _foo.css │ │ │ │ ├── _z.css │ │ │ │ ├── bar.css │ │ │ │ ├── baz.css │ │ │ │ ├── file.css │ │ │ │ ├── foo.css │ │ │ │ └── z.css │ │ ├── relative.bar │ │ ├── relative.bar.scss │ │ ├── relative.foo │ │ └── relative.foo.css │ ├── integration │ │ ├── bar.css │ │ ├── foo.css │ │ └── module │ │ │ └── baz.css │ └── module │ │ ├── _bar.css │ │ ├── _module-3 │ │ └── index.scss │ │ ├── bar.css │ │ ├── index.css │ │ ├── index.scss │ │ ├── module-1 │ │ ├── index.css │ │ ├── main.css │ │ └── package.json │ │ ├── module-2 │ │ ├── index.scss │ │ ├── main.js │ │ └── package.json │ │ ├── module-3 │ │ └── index.scss │ │ ├── path-1 │ │ ├── _foo.css │ │ └── foo.css │ │ └── path-2 │ │ └── foo.css ├── node_modules │ └── css.globtest │ │ └── glob1.css ├── resolve-glob.js ├── resolve-module.js └── utils.js └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrySound/postcss-easy-import/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | npm-debug.log 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrySound/postcss-easy-import/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrySound/postcss-easy-import/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrySound/postcss-easy-import/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrySound/postcss-easy-import/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrySound/postcss-easy-import/HEAD/index.js -------------------------------------------------------------------------------- /lib/add-prefix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrySound/postcss-easy-import/HEAD/lib/add-prefix.js -------------------------------------------------------------------------------- /lib/has-extensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrySound/postcss-easy-import/HEAD/lib/has-extensions.js -------------------------------------------------------------------------------- /lib/has-prefix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrySound/postcss-easy-import/HEAD/lib/has-prefix.js -------------------------------------------------------------------------------- /lib/resolve-glob.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrySound/postcss-easy-import/HEAD/lib/resolve-glob.js -------------------------------------------------------------------------------- /lib/resolve-module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrySound/postcss-easy-import/HEAD/lib/resolve-module.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrySound/postcss-easy-import/HEAD/package.json -------------------------------------------------------------------------------- /test/easy-import.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrySound/postcss-easy-import/HEAD/test/easy-import.js -------------------------------------------------------------------------------- /test/fixtures/glob/ext: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/glob/ext.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/glob/ext.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/glob/foo.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/glob/path-1/1.4.path.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/glob/path-1/path.1-1.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/glob/path-1/path.1-2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/glob/path-1/path.1.3.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/glob/path-2/2.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/glob/path-2/path.2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/glob/path-2/path.2.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/glob/path-2/path.2.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/glob/path.0.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/glob/prefixed/_prefix.foo.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/glob/prefixed/_prefix.foo.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/glob/prefixed/prefix.foo.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/glob/prefixed/prefix.foo.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/glob/prefixed/without/_baz.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/glob/prefixed/without/_foo.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/glob/prefixed/without/_z.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/glob/prefixed/without/bar.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/glob/prefixed/without/baz.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/glob/prefixed/without/file.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/glob/prefixed/without/foo.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/glob/prefixed/without/z.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/glob/relative.bar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/glob/relative.bar.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/glob/relative.foo: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/glob/relative.foo.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/integration/bar.css: -------------------------------------------------------------------------------- 1 | .bar { 2 | color: green; 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/integration/foo.css: -------------------------------------------------------------------------------- 1 | .foo { 2 | color: red; 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/integration/module/baz.css: -------------------------------------------------------------------------------- 1 | .baz { 2 | color: blue; 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/module/_bar.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/module/_module-3/index.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/module/bar.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/module/index.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/module/index.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/module/module-1/index.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/module/module-1/main.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/module/module-1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrySound/postcss-easy-import/HEAD/test/fixtures/module/module-1/package.json -------------------------------------------------------------------------------- /test/fixtures/module/module-2/index.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/module/module-2/main.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/module/module-2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrySound/postcss-easy-import/HEAD/test/fixtures/module/module-2/package.json -------------------------------------------------------------------------------- /test/fixtures/module/module-3/index.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/module/path-1/_foo.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/module/path-1/foo.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/module/path-2/foo.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/node_modules/css.globtest/glob1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrySound/postcss-easy-import/HEAD/test/node_modules/css.globtest/glob1.css -------------------------------------------------------------------------------- /test/resolve-glob.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrySound/postcss-easy-import/HEAD/test/resolve-glob.js -------------------------------------------------------------------------------- /test/resolve-module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrySound/postcss-easy-import/HEAD/test/resolve-module.js -------------------------------------------------------------------------------- /test/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrySound/postcss-easy-import/HEAD/test/utils.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrySound/postcss-easy-import/HEAD/yarn.lock --------------------------------------------------------------------------------