Home
last modified time | relevance | path

Searched refs:bold (Results 1 – 25 of 217) sorted by relevance

123456789

/expo/tools/src/
H A DFormatter.ts35 `(${blue.bold(link('#$1', 'https://github.com/expo/expo/pull/$1'))})`
49 return yellow.bold(`(${link(abbreviatedHash, url)})`);
58 .replace(/\[(#\d+|@\w+)\]\(([^)]+?)\)/g, blue.bold(link('$1', '$2')))
59 .replace(/(\W)([_*]{2})([^\2]*?)\2(\W)/g, '$1' + reset.bold('$3') + '$4')
87 return gray.bold(p3) + white.bold(p4);
90 const logColor = p3 === 'error' ? red.bold : yellow.bold;
92 return cyan.bold(relativePath + p2) + ' ' + logColor(p3 + p4);
98 .replace(/\s\^\n(\s[^\n]+)?/g, green.bold('$&\n'))
99 .replace(/\*\* BUILD FAILED \*\*/, red.bold('$&'));
/expo/packages/html-elements/src/elements/__tests__/__snapshots__/
H A DHeadings-test.tsx.snap.ios9 "fontWeight": "bold",
22 "fontWeight": "bold",
35 "fontWeight": "bold",
48 "fontWeight": "bold",
61 "fontWeight": "bold",
74 "fontWeight": "bold",
H A DHeadings-test.tsx.snap.android9 "fontWeight": "bold",
22 "fontWeight": "bold",
35 "fontWeight": "bold",
48 "fontWeight": "bold",
61 "fontWeight": "bold",
74 "fontWeight": "bold",
/expo/tools/src/promote-packages/
H A Dhelpers.ts31 const from = fromVersion ? cyan.bold(fromVersion) : gray.bold('none');
32 const to = cyan.bold(toVersion);
45 `Following packages would be ${green.bold('promoted')}:`
49 `Following packages could be ${red.bold('demoted')} ${gray(`(requires --demote flag)`)}:`
/expo/apps/bare-expo/e2e/utils/
H A Dreport.js12 .join(chalk.magenta.bold(` ${testName} `))
13 .replace(/toBe:\s/g, chalk.bold.green('toBe: '));
15 console.log(`\n${chalk.bgMagenta.bold.black(` RESULTS `)}\n\n${formatResults(results)}`);
18 console.log(`\n${chalk.bgRed.bold.black(` FAILED `)}\n\n${formatResults(failures)}`);
/expo/packages/html-elements/src/elements/
H A DHeadings.tsx41 fontWeight: 'bold',
48 fontWeight: 'bold',
55 fontWeight: 'bold',
62 fontWeight: 'bold',
69 fontWeight: 'bold',
76 fontWeight: 'bold',
/expo/packages/@expo/cli/src/start/server/metro/
H A DMetroTerminalReporter.ts58 chalk.bold(` ${(100 * progress.ratio).toFixed(1).padStart(4)}% `) +
69 chalk.bold(path.basename(localPath)) +
155 `The package at "${chalk.bold(
157 )}" attempted to import the Node standard library module "${chalk.bold(
165 `You attempted to import the Node standard library module "${chalk.bold(
167 )}" from "${chalk.bold(relativePath)}".`,
221 return `${chalk.bold(formatted)} `;
231 return `${chalk.bold('Server')} `;
/expo/tools/src/publish-packages/tasks/
H A DupdatePackageVersions.ts22 logger.info(`\n�� Updating versions in ${magenta.bold('package.json')}s...`);
34 `${cyan.bold(pkg.packageVersion)} -> ${cyan.bold(state.releaseVersion!)}`
H A DupdateBundledNativeModulesFile.ts29 logger.info(`\n✏️ Updating ${magenta.bold('bundledNativeModules.json')} file...`);
43 `${cyan.bold(currentRange)} -> ${cyan.bold(newRange)}`
H A DpublishPackagesPipeline.ts57 `\n✅ Successfully published ${cyan.bold(count + '')} package${count > 1 ? 's' : ''}.\n`
62 `Run ${cyan.bold('et promote-packages')} to promote them to ${yellow('latest')} tag.`
H A DselectPackagesToPublish.ts99 message: `Do you want to publish ${green.bold(packageName)} as ${cyan.bold(releaseVersion)}?`,
118 message: `What do you want to do with ${green.bold(packageName)}?`,
126 name: `Publish as ${cyan.bold(version)}`,
/expo/tools/src/generate-module/
H A DfetchTemplate.ts17 Logger.global.info(`Using local template: ${chalk.bold(path.resolve(template))}.`);
21 Logger.global.info(`Using NPM package as template: ${chalk.bold(template)}`);
25 Logger.global.info(`Using default NPM package as template: ${chalk.bold(DEFAULT_TEMPLATE)}`);
/expo/tools/src/check-packages/
H A DcheckPackageAsync.ts20 logger.info(`�� Checking ${green.bold(pkg.packageName)} plugin`);
22 logger.info(`�� Checking ${green.bold(pkg.packageName)} package`);
61 logger.log(`✨ ${green.bold(pkg.packageName)} checks passed`);
/expo/tools/src/commands/
H A DCherryPickCommand.ts73 `\nLooking for commits to cherry-pick from ${chalk.bold(chalk.blue(source))} to ${chalk.bold(
130 logger.log(chalk.bold(chalk.red('Ignoring the following commits from before the start date:')));
172 logger.log(chalk.bold(chalk.yellow(`git checkout ${destination}`)));
174 logger.info(`Checking out ${chalk.bold(chalk.blue(destination))} branch...`);
185 logger.log(chalk.bold(chalk.yellow(`git cherry-pick ${commitHashes.join(' ')}`)));
H A DClientBuild.ts129 logger.info(`Client build already exists at ${magenta.bold(relativeAppPath)}`);
149 logger.info(`Build ${yellow.bold(appVersion)} is already defined in versions endpoint.`);
158 logger.info(`Uploading ${yellow.bold(appVersion)} build`);
171 `Updating versions endpoint with client url ${blue.bold(link(clientUrl, clientUrl))}`
/expo/packages/create-expo/src/
H A DTemplate.ts161 console.log(chalk.bold(`✅ Your project is ready!`));
170 console.log(`- ${chalk.bold('cd ' + cdPath)}`);
176 console.log(`- ${chalk.bold(formatRunCommand(packageManager, 'android'))}`);
183 console.log(`- ${chalk.bold(formatRunCommand(packageManager, 'ios'))}${macOSComment}`);
185 console.log(`- ${chalk.bold(formatRunCommand(packageManager, 'web'))}`);
241 text: chalk.bold(title),
/expo/packages/create-expo-module/src/
H A Dcreate-expo-module.ts58 chalk.red.bold(
82 `${chalk.gray('The local module will be created in the ')}${chalk.gray.bold.italic(
84 )} ${chalk.gray('directory in the root of your project. Learn more: ')}${chalk.gray.bold(
170 console.log(`✅ Successfully created Expo module in ${chalk.bold.italic(`modules/${slug}`)}`);
208 debug(`Using module template ${chalk.bold(packageName)}@${chalk.bold(version)}`);
413 commands.forEach((command) => console.log(chalk.gray('>'), chalk.bold(command)));
416 console.log(`Learn more on Expo Modules APIs: ${chalk.blue.bold(DOCS_URL)}`);
425 console.log(`Learn more on Expo Modules APIs: ${chalk.blue.bold(DOCS_URL)}`);
/expo/packages/@expo/cli/src/utils/
H A Dgit.ts57 Log.log(`${chalk.bold('Warning!')} Your git working tree is ${chalk.red('dirty')}.`);
59 `It's recommended to ${chalk.bold(
H A DvalidateApplicationId.ts184 return `⚠️ The package ${chalk.bold(packageName)} is already in use. ${chalk.dim(
196 return `⚠️ The app ${chalk.bold(appName)} by ${chalk.italic(
198 )} is already using ${chalk.bold(id)}`;
H A DmodifyConfigAsync.ts26 …Expo config was found. Please create an Expo config (${chalk.bold`app.json`} or ${chalk.bold`app.c…
/expo/apps/native-component-list/src/components/
H A DDeprecatedHeading.tsx19 fontWeight: 'bold',
23 fontWeight: 'bold',
/expo/packages/create-expo-module/build/
H A Dcreate-expo-module.js44 …console.log(chalk_1.default.red.bold('⚠️ This command should be run inside your Expo project when …
59 …efault.gray.bold.italic('modules')} ${chalk_1.default.gray('directory in the root of your project.…
133 …console.log(`✅ Successfully created Expo module in ${chalk_1.default.bold.italic(`modules/${slug}`…
167 …debug(`Using module template ${chalk_1.default.bold(packageName)}@${chalk_1.default.bold(version)}…
319 …commands.forEach((command) => console.log(chalk_1.default.gray('>'), chalk_1.default.bold(command)…
322 console.log(`Learn more on Expo Modules APIs: ${chalk_1.default.blue.bold(DOCS_URL)}`);
330 console.log(`Learn more on Expo Modules APIs: ${chalk_1.default.blue.bold(DOCS_URL)}`);
/expo/packages/expo-updates/cli/utils/
H A DmodifyConfigAsync.ts25 …Expo config was found. Please create an Expo config (${chalk.bold`app.json`} or ${chalk.bold`app.c…
/expo/packages/@expo/cli/src/start/platforms/android/
H A DpromptAndroidDevice.ts15 return chalk.bold;
18 return (text: string) => chalk.bold(chalk.gray(text));
/expo/tools/src/packages-graph/
H A DPackagesGraphUtils.ts85 console.log(`${chalk.bold(node.name)} has no dependents`);
89 console.log(`All dependents of the ${chalk.bold(node.name)} package:`);
92 console.log(`- ${chalk.bold(node.name)}`);
112 return chalk.bold(name);

123456789