struggling with gitbutler
This commit is contained in:
parent
da2a5502a3
commit
9e7c675a47
|
|
@ -306,6 +306,22 @@ for (const webPackage of ['html-reporter', 'recorder', 'trace-viewer']) {
|
|||
});
|
||||
}
|
||||
|
||||
// Build/watch trace viewer service worker.
|
||||
steps.push({
|
||||
command: 'npx',
|
||||
args: [
|
||||
'vite',
|
||||
'--config',
|
||||
'vite.sw.config.ts',
|
||||
'build',
|
||||
...(watchMode ? ['--watch', '--minify=false'] : []),
|
||||
...(withSourceMaps ? ['--sourcemap=inline'] : []),
|
||||
],
|
||||
shell: true,
|
||||
cwd: path.join(__dirname, '..', '..', 'packages', 'trace-viewer'),
|
||||
concurrent: true,
|
||||
});
|
||||
|
||||
// web packages dev server
|
||||
if (watchMode) {
|
||||
steps.push({
|
||||
|
|
|
|||
Loading…
Reference in a new issue