This repository has been archived on 2026-03-16. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
softwareengineering-2-modar.../frontend/build.gradle.kts

17 lines
345 B
Kotlin

tasks.register<Delete>("clean") {
delete("dist", "node_modules")
}
tasks.register<Exec>("npmInstall") {
commandLine("npm", "install")
}
tasks.register<Exec>("dev") {
dependsOn("npmInstall")
commandLine("npm", "run", "dev")
}
tasks.register<Exec>("build") {
dependsOn("npmInstall")
commandLine("npm", "run", "build")
}