mirror of
https://github.com/mattermost/mattermost.git
synced 2026-02-03 20:40:00 -05:00
* MM-54325 Have web app build script return error codes on failure * Make web app --runner option not return an error code
62 lines
1.9 KiB
JavaScript
62 lines
1.9 KiB
JavaScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
const path = require('path');
|
|
|
|
const chalk = require('chalk');
|
|
|
|
const packageJson = require('../package.json');
|
|
|
|
function getWorkspaces() {
|
|
return packageJson.workspaces;
|
|
}
|
|
|
|
function getPlatformPackagesContainingCommand(scriptName) {
|
|
return getWorkspaces().filter((workspace) => {
|
|
if (!workspace.startsWith('platform/')) {
|
|
return false;
|
|
}
|
|
|
|
// eslint-disable-next-line global-require
|
|
const workspacePackageJson = require(path.join(__dirname, '..', workspace, 'package.json'));
|
|
|
|
return workspacePackageJson?.scripts?.[scriptName];
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Returns an array of concurrently commands to run a given script on every platform workspace that contains it.
|
|
*/
|
|
function getPlatformCommands(scriptName) {
|
|
return getPlatformPackagesContainingCommand(scriptName).map((workspace) => ({
|
|
command: `npm:${scriptName} --workspace=${workspace}`,
|
|
name: workspace.substring(workspace.lastIndexOf('/') + 1),
|
|
prefixColor: getColorForWorkspace(workspace),
|
|
}));
|
|
}
|
|
|
|
const workspaceColors = ['green', 'magenta', 'yellow', 'red', 'blue'];
|
|
function getColorForWorkspace(workspace) {
|
|
const index = getWorkspaces().indexOf(workspace);
|
|
|
|
return index === -1 ? chalk.white : workspaceColors[index % workspaceColors.length];
|
|
}
|
|
|
|
/**
|
|
* @param {import("concurrently").CloseEvent[]} closeEvents - An array of CloseEvents thrown by concurrently when waiting on a result
|
|
* @param {number} codeOnSignal - Which error code to return when the process is interrupted
|
|
*/
|
|
function getExitCode(closeEvents, codeOnSignal = 1) {
|
|
const exitCode = closeEvents.find((event) => !event.killed && event.exitCode > 0)?.exitCode;
|
|
|
|
if (typeof exitCode === 'string') {
|
|
return codeOnSignal
|
|
} else {
|
|
return exitCode;
|
|
}
|
|
}
|
|
|
|
module.exports = {
|
|
getExitCode,
|
|
getPlatformCommands,
|
|
};
|