为什么通过脚本构建时 esbuild 进程不退出?

Why doesn't esbuild process exit when building by script?

提问人:Ooker 提问时间:9/7/2023 更新时间:9/7/2023 访问量:27

问:

我有这个脚本:build.ts

import * as esbuild from 'https://deno.land/x/[email protected]/mod.js'
await esbuild.build({
  entryPoints: ['main.ts'],
})

该命令运行正常,但不会退出。为什么?deno run --allow-all --allow-env .\build.ts

退出 ESBuid

评论


答: 暂无答案