mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
MM-51729 Fix make dev after monorepo move (#22687)
This commit is contained in:
@@ -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');
|
||||
|
||||
|
||||
Reference in New Issue
Block a user