Skip to content

Commit a02d096

Browse files
committed
Remove grunt/gulp plugins. #12
1 parent 6b424c3 commit a02d096

38 files changed

+9
-1000
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
Changelog
22
=========
33

4+
Version 2.0.0 *(WIP)*
5+
----------------------------
6+
* Only support Gradle 5.x
7+
* Drop support for grunt/gulp plugins.
8+
49
Version 1.5.1 *(2019-06-19)*
510
----------------------------
611
* Fix inputs/outputs for NpmInstallTask/YarnInstallTask.

README.md

+1-9
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,8 @@ with Gradle:
1313

1414
* [NodeJS](https://nodejs.org)
1515
* [Yarn](https://yarnpkg.com/)
16-
* [Grunt](https://gruntjs.com/)
17-
* [Gulp](https://gulpjs.com/)
18-
19-
It's actually 3 plugins in one:
2016

2117
* [Node Plugin](https://plugins.gradle.org/plugin/com.github.node-gradle.node) (`com.github.node-gradle.node`) - [See docs](docs/node.md).
22-
* [Grunt Plugin](https://plugins.gradle.org/plugin/com.github.node-gradle.grunt) (`com.github.node-gradle.grunt`) - [See docs](docs/grunt.md)
23-
* [Gulp Plugin](https://plugins.gradle.org/plugin/com.github.node-gradle.gulp) (`com.github.node-gradle.gulp`) - [See docs](docs/gulp.md)
24-
2518

2619
## Documentation
2720

@@ -30,8 +23,6 @@ issue to [GitHub Issues](https://github.com/node-gradle/gradle-node-plugin/issue
3023

3124
* [Installing](docs/installing.md)
3225
* [Node Plugin](docs/node.md)
33-
* [Grunt Plugin](docs/grunt.md)
34-
* [Gulp Plugin](docs/gulp.md)
3526
* [FAQ](docs/faq.md)
3627
* [Changelog](CHANGELOG.md)
3728

@@ -40,6 +31,7 @@ issue to [GitHub Issues](https://github.com/node-gradle/gradle-node-plugin/issue
4031

4132
Here's the documentation for older releases of the plugin:
4233

34+
* [1.5.2](https://github.com/node-gradle/gradle-node-plugin/blob/v1.5.2/README.md)
4335
* [1.1.1](https://github.com/node-gradle/gradle-node-plugin/blob/v1.1.1/README.md)
4436
* [1.1.0](https://github.com/node-gradle/gradle-node-plugin/blob/v1.1.0/README.md)
4537
* [1.0.1](https://github.com/node-gradle/gradle-node-plugin/blob/v1.0.1/README.md)

docs/grunt.md

-104
This file was deleted.

docs/gulp.md

-134
This file was deleted.

docs/installing.md

+3-13
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,7 @@ in your `build.gradle` file:
55

66
```gradle
77
plugins {
8-
id "com.github.node-gradle.node" version "1.3.0"
9-
}
10-
```
11-
12-
If you want to install all of the node-plugins (which is pretty uncommon), then write this:
13-
14-
```gradle
15-
plugins {
16-
id "com.github.node-gradle.node" version "1.3.0"
17-
id "com.github.node-gradle.grunt" version "1.3.0"
18-
id "com.github.node-gradle.gulp" version "1.3.0"
8+
id "com.github.node-gradle.node" version "2.0.0"
199
}
2010
```
2111

@@ -30,7 +20,7 @@ buildscript {
3020
}
3121
3222
dependencies {
33-
classpath "com.github.node-gradle:gradle-node-plugin:1.3.0"
23+
classpath "com.github.node-gradle:gradle-node-plugin:2.0.0"
3424
}
3525
}
3626
@@ -52,7 +42,7 @@ buildscript {
5242
}
5343
5444
dependencies {
55-
classpath "com.github.node-gradle:gradle-node-plugin:1.3.0-SNAPSHOT"
45+
classpath "com.github.node-gradle:gradle-node-plugin:2.0.0-SNAPSHOT"
5646
}
5747
}
5848

examples/README.md

-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ Here's a set of examples using the node plugin:
44

55
* [Simple Node](simple-node)
66
* [Simple Yarn](simple-yarn)
7-
* [Simple Grunt](simple-grunt)
8-
* [Simple Gulp](simple-gulp)
97

108
To execute all examples:
119

examples/settings.gradle

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
11
include ':simple-node'
22
include ':simple-yarn'
3-
include ':simple-grunt'
4-
include ':simple-gulp'
53
includeBuild '..'

examples/simple-grunt/Gruntfile.js

-5
This file was deleted.

examples/simple-grunt/README.md

-7
This file was deleted.

examples/simple-grunt/build.gradle

-10
This file was deleted.

examples/simple-grunt/package.json

-6
This file was deleted.

examples/simple-gulp/Gulpfile.js

-6
This file was deleted.

examples/simple-gulp/README.md

-7
This file was deleted.

examples/simple-gulp/build.gradle

-11
This file was deleted.

0 commit comments

Comments
 (0)