TheBrokenRail
7ffcc55da5
Some checks failed
ScriptCraft/pipeline/head There was a failure building this commit
72 lines
1.4 KiB
Groovy
72 lines
1.4 KiB
Groovy
def typescriptRoot = 'src/main/ts'
|
|
def typescriptRootFile = new File(rootDir.absolutePath, typescriptRoot)
|
|
|
|
def typescriptOut = new File(typescriptRootFile, 'lib/ts')
|
|
def dtsOut = new File(typescriptRootFile, 'lib/dts')
|
|
|
|
task typescript(group: 'typescript', type: Exec) {
|
|
inputs.dir typescriptRootFile
|
|
outputs.dirs typescriptOut, dtsOut
|
|
|
|
workingDir typescriptRootFile
|
|
|
|
executable 'npm'
|
|
|
|
args 'run', 'build'
|
|
|
|
doFirst {
|
|
project.delete {
|
|
delete typescriptOut, dtsOut
|
|
}
|
|
}
|
|
}
|
|
|
|
task typescriptDist(group: 'typescript', type: Tar) {
|
|
into('/types') {
|
|
from new File(typescriptRootFile as File, 'src/types')
|
|
}
|
|
into('/lib') {
|
|
from dtsOut
|
|
}
|
|
|
|
archiveName 'typescript-dist.tar.gz'
|
|
destinationDir new File(buildDir, 'libs')
|
|
compression Compression.GZIP
|
|
}
|
|
|
|
typescriptDist.dependsOn typescript
|
|
|
|
task eslint(group: 'typescript', type: Exec) {
|
|
workingDir typescriptRootFile
|
|
|
|
executable 'npm'
|
|
|
|
args 'run', 'eslint'
|
|
}
|
|
|
|
processResources.dependsOn typescript
|
|
|
|
def typedocOut = new File(typescriptRootFile, 'lib/typedoc')
|
|
|
|
task typedoc(group: 'typescript', type: Exec) {
|
|
inputs.dir typescriptRootFile
|
|
outputs.dir typedocOut
|
|
|
|
workingDir typescriptRootFile
|
|
|
|
executable 'npm'
|
|
|
|
args 'run', 'typedoc'
|
|
|
|
doFirst {
|
|
project.delete {
|
|
delete typedocOut
|
|
}
|
|
}
|
|
}
|
|
|
|
processResources {
|
|
from(typescriptOut.absolutePath) {
|
|
into 'scriptcraft'
|
|
}
|
|
} |