feat: 代码开发中...

This commit is contained in:
2023-03-16 07:04:56 +08:00
parent 1a377c911f
commit 63147e4c08
34 changed files with 482 additions and 218 deletions

View File

@@ -20,6 +20,20 @@ tasks.register("npmBuild", NpmTask) {
args = ['run', 'build']
}
tasks.register("npmBuildOnly", NpmTask) {
dependsOn("npmInstall")
inputs.files(
'public', 'src',
'env.d.ts', 'index.html',
'package.json', 'package-lock.json',
'tsconfig.config.json', 'tsconfig.json',
'vite.config.ts'
)
outputs.files(fileTree('dist'))
args = ['run', 'build-only']
}
//调用npm run dev
tasks.register("npmDev", NpmTask) {