mirror of
https://github.com/tachiyomiorg/tachiyomi-extensions-inspector.git
synced 2024-11-01 06:55:06 +01:00
21 lines
415 B
Plaintext
21 lines
415 B
Plaintext
plugins {
|
|
id("com.github.node-gradle.node") version "3.0.1"
|
|
}
|
|
|
|
node {
|
|
nodeProjectDir.set(file("${project.projectDir}/react/"))
|
|
}
|
|
|
|
tasks.named("yarn_build") {
|
|
dependsOn("yarn") // install node_modules
|
|
}
|
|
|
|
tasks.register<Copy>("copyBuild") {
|
|
from(file("$rootDir/webUI/react/build"))
|
|
into(file("$rootDir/server/src/main/resources/react"))
|
|
}
|
|
|
|
tasks.named("copyBuild") {
|
|
dependsOn("yarn_build")
|
|
}
|