├── .gitignore ├── README.md ├── index.js ├── package.json └── test ├── .gitignore ├── index.test.js ├── output └── .gitignore ├── prepare.js └── scss ├── another └── _module.scss ├── imports.scss ├── include-paths.scss ├── language.scss └── multiple-imports.scss /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .idea -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browniefed/compass-loader/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browniefed/compass-loader/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browniefed/compass-loader/HEAD/package.json -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- 1 | **/*.css -------------------------------------------------------------------------------- /test/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browniefed/compass-loader/HEAD/test/index.test.js -------------------------------------------------------------------------------- /test/output/.gitignore: -------------------------------------------------------------------------------- 1 | *.js -------------------------------------------------------------------------------- /test/prepare.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browniefed/compass-loader/HEAD/test/prepare.js -------------------------------------------------------------------------------- /test/scss/another/_module.scss: -------------------------------------------------------------------------------- 1 | .another-module { 2 | background: hotpink; 3 | } -------------------------------------------------------------------------------- /test/scss/imports.scss: -------------------------------------------------------------------------------- 1 | @import "another/module"; -------------------------------------------------------------------------------- /test/scss/include-paths.scss: -------------------------------------------------------------------------------- 1 | @import "module"; -------------------------------------------------------------------------------- /test/scss/language.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browniefed/compass-loader/HEAD/test/scss/language.scss -------------------------------------------------------------------------------- /test/scss/multiple-imports.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browniefed/compass-loader/HEAD/test/scss/multiple-imports.scss --------------------------------------------------------------------------------