├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── index.js ├── lib └── flatten-path.js ├── package.json ├── test ├── flatten-path.js ├── main.js └── test_dir │ └── some.css │ └── test.css └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armed/gulp-flatten/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armed/gulp-flatten/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armed/gulp-flatten/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armed/gulp-flatten/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armed/gulp-flatten/HEAD/index.js -------------------------------------------------------------------------------- /lib/flatten-path.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armed/gulp-flatten/HEAD/lib/flatten-path.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armed/gulp-flatten/HEAD/package.json -------------------------------------------------------------------------------- /test/flatten-path.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armed/gulp-flatten/HEAD/test/flatten-path.js -------------------------------------------------------------------------------- /test/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armed/gulp-flatten/HEAD/test/main.js -------------------------------------------------------------------------------- /test/test_dir/some.css/test.css: -------------------------------------------------------------------------------- 1 | .myclass { 2 | color: red; 3 | } 4 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armed/gulp-flatten/HEAD/yarn.lock --------------------------------------------------------------------------------