Skip to content

Commit 4eda1f3

Browse files
committed
Update latest version
1 parent 05fe538 commit 4eda1f3

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## Version 3.x *(unreleased)*
44

5+
## Version 3.5.0 *(2022-10-18)*
6+
* Add ExecResult to tasks [#237](https://github.com/node-gradle/gradle-node-plugin/issues/237)
7+
* Don't run `npmInstall` if package.json is missing [#174](https://github.com/node-gradle/gradle-node-plugin/issues/174)
8+
59
## Version 3.4.0 *(2022-06-26)*
610
* Add pnpm support [#67](https://github.com/node-gradle/gradle-node-plugin/issues/67) (thanks [langrp](https://github.com/langrp) for the [pull request](https://github.com/node-gradle/gradle-node-plugin/pull/89), and [DreierF](https://github.com/DreierF) for the [pull request](https://github.com/node-gradle/gradle-node-plugin/pull/240) that merged it)
711

README.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
![Build Status](https://github.com/node-gradle/gradle-node-plugin/workflows/Build/badge.svg?branch=master)
66
[![License](https://img.shields.io/github/license/node-gradle/gradle-node-plugin.svg)](http://www.apache.org/licenses/LICENSE-2.0.html)
7-
![Version](https://img.shields.io/badge/Version-3.4.0-orange.svg)
7+
![Version](https://img.shields.io/badge/Version-3.5.0-orange.svg)
88

99
This plugin enables you to use a lot of [Node.js](https://nodejs.org)-based technologies as part of your
1010
build without having Node.js installed locally on your system. It integrates the following Node.js-based system
@@ -39,7 +39,8 @@ issue to [GitHub Issues](https://github.com/node-gradle/gradle-node-plugin/issue
3939

4040
Here's the documentation for older releases of the plugin:
4141

42-
* [3.4.0](https://github.com/node-gradle/gradle-node-plugin/blob/3.4.0/README.md) (current)
42+
* [3.5.0](https://github.com/node-gradle/gradle-node-plugin/blob/3.5.0/README.md) (current)
43+
* [3.4.0](https://github.com/node-gradle/gradle-node-plugin/blob/3.4.0/README.md)
4344
* [3.3.0](https://github.com/node-gradle/gradle-node-plugin/blob/3.3.0/README.md)
4445
* [3.2.1](https://github.com/node-gradle/gradle-node-plugin/blob/3.2.1/README.md)
4546
* [3.2.0](https://github.com/node-gradle/gradle-node-plugin/blob/3.2.0/README.md)

docs/installation.md

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

66
```gradle
77
plugins {
8-
id "com.github.node-gradle.node" version "3.4.0"
8+
id "com.github.node-gradle.node" version "3.5.0"
99
}
1010
```
1111

@@ -18,7 +18,7 @@ buildscript {
1818
}
1919
2020
dependencies {
21-
classpath "com.github.node-gradle:gradle-node-plugin:3.4.0"
21+
classpath "com.github.node-gradle:gradle-node-plugin:3.5.0"
2222
}
2323
}
2424

docs/usage.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ file (see [Installing](installation.md) for details):
1818

1919
```gradle
2020
plugins {
21-
id "com.github.node-gradle.node" version "3.4.0"
21+
id "com.github.node-gradle.node" version "3.5.0"
2222
}
2323
```
2424

0 commit comments

Comments
 (0)