├── .gitignore └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | build/ 3 | .gradle/ 4 | *.iws 5 | *.ids 6 | *.iml 7 | *.ipr 8 | .idea 9 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Gradle Plugin for Gulp 2 | ======================= 3 | 4 | > *This is now part of the [Gradle Node Plugin](https://github.com/srs/gradle-node-plugin) 5 | and will be release as a part of that plugin. Please go there to see how to use this plugin.* 6 | 7 | Here's the documentation for older releases of the plugin: 8 | 9 | * [0.13](https://github.com/srs/gradle-gulp-plugin/blob/v0.13/README.md) 10 | * [0.12](https://github.com/srs/gradle-gulp-plugin/blob/v0.12/README.md) 11 | * [0.11](https://github.com/srs/gradle-gulp-plugin/blob/v0.11/README.md) 12 | * [0.10](https://github.com/srs/gradle-gulp-plugin/blob/v0.10/README.md) 13 | --------------------------------------------------------------------------------