本文整理匯總了TypeScript中@kbn/dev-utils.ToolingLog.error方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript ToolingLog.error方法的具體用法?TypeScript ToolingLog.error怎麽用?TypeScript ToolingLog.error使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類@kbn/dev-utils.ToolingLog
的用法示例。
在下文中一共展示了ToolingLog.error方法的7個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: lintFiles
export async function lintFiles(log: ToolingLog, files: File[]) {
for (const [project, filesInProject] of groupFilesByProject(files)) {
const exitCode = await run(
{
exclude: [],
files: filesInProject.map(f => f.getAbsolutePath()),
fix: false,
format: 'stylish',
project: project.tsConfigPath,
},
{
log(m: string) {
log.write(m);
},
error(m: string) {
log.error(m);
},
}
);
if (exitCode > 0) {
throw createFailError(`[tslint] failure`, 1);
} else {
log.success(
'[tslint/%s] %d files linted successfully',
project.name,
filesInProject.length
);
}
}
}
示例2:
list.run().catch((error: any) => {
process.exitCode = 1;
if (!error.errors) {
log.error('Unhandled exception!');
log.error(error);
process.exit();
}
for (const e of error.errors) {
if (e instanceof ProjectFailure) {
log.write('');
log.error(`${e.project.name} failed\n${e.error.stdout}`);
} else {
log.error(e);
}
}
});
示例3:
list.run().catch((error: any) => {
process.exitCode = 1;
if (!error.errors) {
log.error('Unhandled exception!');
log.error(error);
process.exit();
}
for (const e of error.errors) {
if (e instanceof ProjectFailure) {
log.write('');
// stdout contains errors from tsc
// stderr conatins tsc crash report
log.error(`${e.project.name} failed\n${e.error.stdout || e.error.stderr}`);
} else {
log.error(e);
}
}
});
示例4: run
export async function run(fn: RunFn, options: Options = {}) {
const flags = getFlags(process.argv.slice(2), options);
const allowUnexpected = options.flags ? options.flags.allowUnexpected : false;
if (flags.help) {
process.stderr.write(getHelp(options));
process.exit(1);
}
const log = new ToolingLog({
level: pickLevelFromFlags(flags),
writeTo: process.stdout,
});
try {
if (!allowUnexpected && flags.unexpected.length) {
throw createFlagError(`Unknown flag(s) "${flags.unexpected.join('", "')}"`);
}
await fn({ log, flags });
} catch (error) {
if (isFailError(error)) {
log.error(error.message);
if (error.showHelp) {
log.write(getHelp(options));
}
process.exit(error.exitCode);
} else {
log.error('UNHANDLED ERROR');
log.error(error);
process.exit(1);
}
}
}
示例5:
const logDeprecation = (error: string | Error) => log.error(error);
示例6: runTypeCheckCli
export function runTypeCheckCli() {
const extraFlags: string[] = [];
const opts = getopts(process.argv.slice(2), {
boolean: ['skip-lib-check', 'help'],
default: {
project: undefined,
},
unknown(name) {
extraFlags.push(name);
return false;
},
});
const log = new ToolingLog({
level: 'info',
writeTo: process.stdout,
});
if (extraFlags.length) {
for (const flag of extraFlags) {
log.error(`Unknown flag: ${flag}`);
}
process.exitCode = 1;
opts.help = true;
}
if (opts.help) {
process.stdout.write(
dedent(chalk`
{dim usage:} node scripts/type_check [...options]
Run the TypeScript compiler without emitting files so that it can check
types during development.
Examples:
{dim # check types in all projects}
{dim $} node scripts/type_check
{dim # check types in a single project}
{dim $} node scripts/type_check --project packages/kbn-pm/tsconfig.json
Options:
--project [path] {dim Path to a tsconfig.json file determines the project to check}
--skip-lib-check {dim Skip type checking of all declaration files (*.d.ts)}
--help {dim Show this message}
`)
);
process.stdout.write('\n');
process.exit();
}
const tscArgs = ['--noEmit', '--pretty', ...(opts['skip-lib-check'] ? ['--skipLibCheck'] : [])];
const projects = filterProjectsByFlag(opts.project);
if (!projects.length) {
log.error(`Unable to find project at ${opts.project}`);
process.exit(1);
}
execInProjects(log, projects, 'tsc', project => ['--project', project.tsConfigPath, ...tscArgs]);
}
示例7: run
async function run(folder: string): Promise<boolean> {
const log = new ToolingLog({
level: 'info',
writeTo: process.stdout,
});
const extraFlags: string[] = [];
const opts = getopts(process.argv.slice(2), {
boolean: ['accept', 'docs', 'help'],
default: {
project: undefined,
},
unknown(name) {
extraFlags.push(name);
return false;
},
});
if (extraFlags.length > 0) {
for (const flag of extraFlags) {
log.error(`Unknown flag: ${flag}`);
}
opts.help = true;
}
if (opts.help) {
process.stdout.write(
dedent(chalk`
{dim usage:} node scripts/check_core_api_changes [...options]
Checks for any changes to the Kibana Core API
Examples:
{dim # Checks for any changes to the Kibana Core API}
{dim $} node scripts/check_core_api_changes
{dim # Checks for any changes to the Kibana Core API and updates the documentation}
{dim $} node scripts/check_core_api_changes --docs
{dim # Checks for and automatically accepts and updates documentation for any changes to the Kibana Core API}
{dim $} node scripts/check_core_api_changes --accept
Options:
--accept {dim Accepts all changes by updating the API Review files and documentation}
--docs {dim Updates the Core API documentation}
--help {dim Show this message}
`)
);
process.stdout.write('\n');
return !(extraFlags.length > 0);
}
log.info(`Core ${folder} API: checking for changes in API signature...`);
try {
await runBuildTypes();
} catch (e) {
log.error(e);
return false;
}
const { apiReportChanged, succeeded } = runApiExtractor(log, folder, opts.accept);
// If we're not accepting changes and there's a failure, exit.
if (!opts.accept && !succeeded) {
return false;
}
// Attempt to generate docs even if api-extractor didn't succeed
if ((opts.accept && apiReportChanged) || opts.docs) {
try {
await renameExtractedApiPackageName(folder);
await runApiDocumenter(folder);
} catch (e) {
log.error(e);
return false;
}
log.info(`Core ${folder} API: updated documentation â`);
}
// If any errors or warnings occured, exit with an error
return succeeded;
}