本文整理汇总了TypeScript中@angular-devkit/core.logging.IndentLogger.fatal方法的典型用法代码示例。如果您正苦于以下问题:TypeScript logging.IndentLogger.fatal方法的具体用法?TypeScript logging.IndentLogger.fatal怎么用?TypeScript logging.IndentLogger.fatal使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类@angular-devkit/core.logging.IndentLogger
的用法示例。
在下文中一共展示了logging.IndentLogger.fatal方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: function
export default async function(options: { testing?: boolean, cliArgs: string[] }) {
const logger = new logging.IndentLogger('cling');
let loggingSubscription;
if (!options.testing) {
loggingSubscription = initializeLogging(logger);
}
let projectDetails = getWorkspaceDetails();
if (projectDetails === null) {
const [, localPath] = getWorkspaceRaw('local');
if (localPath !== null) {
logger.fatal(`An invalid configuration file was found ['${localPath}'].`
+ ' Please delete the file before running the command.');
return 1;
}
projectDetails = { root: process.cwd() };
}
try {
const maybeExitCode = await runCommand(options.cliArgs, logger, projectDetails);
if (typeof maybeExitCode === 'number') {
console.assert(Number.isInteger(maybeExitCode));
return maybeExitCode;
}
return 0;
} catch (err) {
if (err instanceof Error) {
logger.fatal(err.message);
if (err.stack) {
logger.fatal(err.stack);
}
} else if (typeof err === 'string') {
logger.fatal(err);
} else if (typeof err === 'number') {
// Log nothing.
} else {
logger.fatal('An unexpected error occurred: ' + JSON.stringify(err));
}
if (options.testing) {
debugger;
throw err;
}
if (loggingSubscription) {
loggingSubscription.unsubscribe();
}
return 1;
}
}
示例2: function
export default async function(options: { testing?: boolean, cliArgs: string[] }) {
const commands = loadCommands();
const logger = new logging.IndentLogger('cling');
let loggingSubscription;
if (!options.testing) {
loggingSubscription = initializeLogging(logger);
}
let projectDetails = getProjectDetails();
if (projectDetails === null) {
projectDetails = { root: process.cwd() };
}
const context = {
project: projectDetails,
};
try {
const maybeExitCode = await runCommand(commands, options.cliArgs, logger, context);
if (typeof maybeExitCode === 'number') {
console.assert(Number.isInteger(maybeExitCode));
return maybeExitCode;
}
return 0;
} catch (err) {
if (err instanceof Error) {
logger.fatal(err.message);
if (err.stack) {
logger.fatal(err.stack);
}
} else if (typeof err === 'string') {
logger.fatal(err);
} else if (typeof err === 'number') {
// Log nothing.
} else {
logger.fatal('An unexpected error occured: ' + JSON.stringify(err));
}
if (options.testing) {
debugger;
throw err;
}
if (loggingSubscription) {
loggingSubscription.unsubscribe();
}
return 1;
}
}
示例3: function
export default async function(options: any) {
// ensure the environemnt variable for dynamic paths
process.env.PWD = path.normalize(process.env.PWD || process.cwd());
process.env.CLI_ROOT = process.env.CLI_ROOT || path.resolve(__dirname, '..', '..');
const commands = loadCommands();
const logger = new logging.IndentLogger('cling');
let loggingSubscription;
if (!options.testing) {
loggingSubscription = initializeLogging(logger);
}
const context = {
project: Project.projectOrnullProject(undefined, undefined),
};
try {
const maybeExitCode = await runCommand(commands, options.cliArgs, logger, context);
if (typeof maybeExitCode === 'number') {
console.assert(Number.isInteger(maybeExitCode));
return maybeExitCode;
}
return 0;
} catch (err) {
if (err instanceof Error) {
logger.fatal(err.message);
logger.fatal(err.stack);
} else if (typeof err === 'string') {
logger.fatal(err);
} else if (typeof err === 'number') {
// Log nothing.
} else {
logger.fatal('An unexpected error occured: ' + JSON.stringify(err));
}
if (options.testing) {
debugger;
throw err;
}
loggingSubscription.unsubscribe();
return 1;
}
}