├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── index.js ├── package.json └── test ├── expected └── build │ ├── bundle-all.css │ ├── bundle-bubbleonly.css │ ├── bundle-import.css │ └── bundle-rebase.css ├── fixtures ├── main.css ├── subdir │ └── imported.css └── vendor │ ├── importedRecursive.css │ └── vendor.css └── test.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariocasciaro/gulp-concat-css/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariocasciaro/gulp-concat-css/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariocasciaro/gulp-concat-css/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariocasciaro/gulp-concat-css/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariocasciaro/gulp-concat-css/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariocasciaro/gulp-concat-css/HEAD/package.json -------------------------------------------------------------------------------- /test/expected/build/bundle-all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariocasciaro/gulp-concat-css/HEAD/test/expected/build/bundle-all.css -------------------------------------------------------------------------------- /test/expected/build/bundle-bubbleonly.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariocasciaro/gulp-concat-css/HEAD/test/expected/build/bundle-bubbleonly.css -------------------------------------------------------------------------------- /test/expected/build/bundle-import.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariocasciaro/gulp-concat-css/HEAD/test/expected/build/bundle-import.css -------------------------------------------------------------------------------- /test/expected/build/bundle-rebase.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariocasciaro/gulp-concat-css/HEAD/test/expected/build/bundle-rebase.css -------------------------------------------------------------------------------- /test/fixtures/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariocasciaro/gulp-concat-css/HEAD/test/fixtures/main.css -------------------------------------------------------------------------------- /test/fixtures/subdir/imported.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariocasciaro/gulp-concat-css/HEAD/test/fixtures/subdir/imported.css -------------------------------------------------------------------------------- /test/fixtures/vendor/importedRecursive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariocasciaro/gulp-concat-css/HEAD/test/fixtures/vendor/importedRecursive.css -------------------------------------------------------------------------------- /test/fixtures/vendor/vendor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariocasciaro/gulp-concat-css/HEAD/test/fixtures/vendor/vendor.css -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariocasciaro/gulp-concat-css/HEAD/test/test.js --------------------------------------------------------------------------------