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 5.4.3

5.4.3

Created 15 January 2024.

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 "5.4.3"
}

See also:

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