fix : change build.gradle add input package.json file setup

This commit is contained in:
minseokkang
2022-11-11 12:54:38 +09:00
parent 27d75eee77
commit f53389a744

View File

@@ -53,6 +53,12 @@ tasks.named('test') {
useJUnitPlatform()
}
task setUp(type: NpmTask){
description = "Install pacakges"
args = ['install']
inputs.files file('./src/frontend/package.json')
outputs.files file('./src/frontend/node_modules')
}
task buildFrontEnd(type: NpmTask){
description = "Build Vue.js"