Search Gradle plugins

com.zegreatrob.jsmints.plugins.minreact

This plugin will generate boilerplace related to working with React in Kotlin for function components and their props.

https://github.com/robertfmurdock/jsmints

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

Version 6.1.12 (latest)

6.1.12

Created 24 July 2024.

This plugin will generate boilerplate related to working with React in Kotlin for function components and their props.

Using the plugins DSL:

plugins {
  id("com.zegreatrob.jsmints.plugins.minreact") version "6.1.12"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.zegreatrob.jsmints:plugins:6.1.12")
  }
}

apply(plugin = "com.zegreatrob.jsmints.plugins.minreact")

Using the plugins DSL:

plugins {
  id "com.zegreatrob.jsmints.plugins.minreact" version "6.1.12"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.zegreatrob.jsmints:plugins:6.1.12"
  }
}

apply plugin: "com.zegreatrob.jsmints.plugins.minreact"

Learn how to apply plugins to subprojects