Search Gradle plugins

com.zegreatrob.jsmints.plugins.ncu

This plugin provides tasks for using the npm-check-updates npm program, for updating package.json dependencies when using Kotlin JS.

https://github.com/robertfmurdock/jsmints

Sources: https://github.com/robertfmurdock/jsmints

Version 4.5.9

4.5.9

Created 23 August 2023.

This plugin provides tasks for using the npm-check-updates npm program, for updating package.json dependencies when using Kotlin JS.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.zegreatrob.jsmints.plugins.ncu") version "4.5.9"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.zegreatrob.jsmints:plugins:4.5.9")
      }
    }
    
    apply(plugin = "com.zegreatrob.jsmints.plugins.ncu")
  • Applying plugins to all subprojects .