run dev server

This commit is contained in:
Simon Knott 2024-10-22 15:41:46 +02:00
parent e56018c9b2
commit 50f11a8936

View file

@ -306,6 +306,16 @@ steps.push({
concurrent: true,
});
// web packages dev server
if (watchMode) {
steps.push({
command: 'npx',
args: ['vite', '--port', '5781'],
shell: true,
cwd: path.join(__dirname, '..', '..', 'packages', 'trace-viewer'),
concurrent: true,
});
}
// Generate injected.
onChanges.push({