├── .gitignore ├── .travis.yml ├── Gulpfile.js ├── LICENSE ├── README.md ├── index.js ├── package.json └── test ├── fixtures └── Gruntfile.js └── test.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxov/gulp-grunt/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxov/gulp-grunt/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxov/gulp-grunt/HEAD/Gulpfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxov/gulp-grunt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxov/gulp-grunt/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxov/gulp-grunt/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxov/gulp-grunt/HEAD/package.json -------------------------------------------------------------------------------- /test/fixtures/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxov/gulp-grunt/HEAD/test/fixtures/Gruntfile.js -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxov/gulp-grunt/HEAD/test/test.js --------------------------------------------------------------------------------