def typescriptOut = new File(buildDir, 'generated/typescript')
def typescriptRoot = 'src/main/ts'
def typescriptRootFile = new File(rootDir.absolutePath, typescriptRoot)
task typescript(group: 'build') {
inputs.dir typescriptRootFile
outputs.dir typescriptOut
doFirst {
project.delete {
delete typescriptOut
}
typescriptOut.mkdirs()
project.exec {
workingDir typescriptRootFile
executable 'npm'
args 'run', 'build', '--'
args '--outDir', typescriptOut.absolutePath
task eslint(group: 'verification', type: Exec) {
args 'run', 'eslint'
processResources.dependsOn typescript
def typedocOut = new File(buildDir, 'typedoc')
task typedoc(group: 'documentation') {
outputs.dir typedocOut
delete typedocOut
typedocOut.mkdirs()
args 'run', 'typedoc', '--'
args '--out', typedocOut.absolutePath
processResources {
from(typescriptOut.absolutePath) {
into 'scriptcraft'