mirror of
https://github.com/JonasKruckenberg/tauri-build.git
synced 2025-08-14 12:55:07 +00:00
produce output
This commit is contained in:
parent
9133a3c917
commit
31d18a46e5
2
dist/index.js
generated
vendored
2
dist/index.js
generated
vendored
@ -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
2
dist/index.js.map
generated
vendored
File diff suppressed because one or more lines are too long
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user