File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed
src/main/kotlin/com/github/gradle/node/npm/task Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change 4
4
5
5
## Version 3.6.0 * (unreleased)*
6
6
* Allow task rules to be disabled [ #116 ] ( https://github.com/node-gradle/gradle-node-plugin/issues/116 )
7
+ * Add ` fastNpmInstall ` option to only track lock-files #[ 157] ( https://github.com/node-gradle/gradle-node-plugin/issues/157 )
7
8
8
9
## Version 3.5.1 * (2022-12-26)*
9
10
* Fix configuration cache support in pnpm
Original file line number Diff line number Diff line change @@ -29,6 +29,9 @@ abstract class NpmInstallTask : NpmTask() {
29
29
dependsOn(NpmSetupTask .NAME )
30
30
npmCommand.set(nodeExtension.npmInstallCommand.map { listOf (it) })
31
31
fastInstall.set(nodeExtension.fastNpmInstall)
32
+ outputs.doNotCacheIf(" With fastNpmInstall there's no output to cache" ) {
33
+ fastInstall.get()
34
+ }
32
35
}
33
36
34
37
@PathSensitive(RELATIVE )
You can’t perform that action at this time.
0 commit comments