From a25a3826baa8056f65ac5956d38824a0a5efcd6a Mon Sep 17 00:00:00 2001 From: Harrison Healey Date: Tue, 28 Mar 2023 15:36:52 -0400 Subject: [PATCH] MM-51729 Fix make dev after monorepo move (#22687) --- webapp/scripts/dev-server.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/webapp/scripts/dev-server.js b/webapp/scripts/dev-server.js index 2b47292834..c279c36cdf 100644 --- a/webapp/scripts/dev-server.js +++ b/webapp/scripts/dev-server.js @@ -6,18 +6,18 @@ const chalk = require('chalk'); const concurrently = require('concurrently'); -const {getWorkspaceCommands} = require('./utils.js'); +const {getPlatformCommands} = require('./utils.js'); async function watchAllWithDevServer() { console.log(chalk.inverse.bold('Watching web app and all subpackages...')); const commands = [ - {command: 'npm:dev-server:webapp', name: 'webapp', prefixColor: 'cyan'}, + {command: 'npm:dev-server --workspace=channels', name: 'webapp', prefixColor: 'cyan'}, {command: 'npm:start:product --workspace=boards', name: 'boards', prefixColor: 'blue'}, {command: 'npm:start:product --workspace=playbooks', name: 'playbooks', prefixColor: 'red'}, ]; - commands.push(...getWorkspaceCommands('run')); + commands.push(...getPlatformCommands('run')); console.log('\n');