produce output

This commit is contained in:
Jonas Kruckenberg 2022-05-07 13:17:29 +02:00
parent 9133a3c917
commit 31d18a46e5
No known key found for this signature in database
GPG Key ID: 21AD3B3C266BDE3D
3 changed files with 3 additions and 3 deletions

2
dist/index.js generated vendored
View File

@ -34,7 +34,7 @@ function buildProject(options) {
if (options.target) {
args.push('--target', options.target);
}
yield (0, execa_1.execa)(runner, args, { cwd: projectPath });
yield (0, execa_1.execa)(runner, args, { cwd: projectPath, stdio: 'inherit' });
const profile = options.debug ? 'debug' : 'release';
const outDir = options.target
? `./target/${options.target}/${profile}/bundle`

2
dist/index.js.map generated vendored

File diff suppressed because one or more lines are too long

View File

@ -24,7 +24,7 @@ export async function buildProject(options: BuildOptions): Promise<string[]> {
args.push('--target', options.target)
}
await execa(runner, args, {cwd: projectPath})
await execa(runner, args, {cwd: projectPath, stdio: 'inherit'})
const profile = options.debug ? 'debug' : 'release'
const outDir = options.target