change-case#capitalCase TypeScript Examples
The following examples show how to use
change-case#capitalCase.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: index.ts From graphql-mesh with MIT License | 6 votes |
NAMING_CONVENTIONS: Record<NamingConventionType, NamingConventionFn> = { camelCase, capitalCase, constantCase, dotCase, headerCase, noCase, paramCase, pascalCase, pathCase, sentenceCase, snakeCase, upperCase, lowerCase, }
Example #2
Source File: index.tsx From devtools-ds with MIT License | 5 votes |
main = async () => {
signale.start("Starting devtools-ds project generation..");
const defaultName = defaultAuthorName();
const defaultEmail = defaultAuthorEmail();
try {
let responses = (await prompt([
{
type: "select",
name: "template",
message: "What template would you like to use?",
choices: getTemplates(),
},
{
type: "input",
name: "projectName",
message: "What is your devtools project's name?",
initial: "my-devtools",
},
{
type: "input",
name: "devName",
message: "What is your name?",
initial: defaultName,
},
{
type: "input",
name: "devEmail",
message: "What is your email?",
initial: defaultEmail,
},
{
type: "input",
name: "projectOrg",
message: "What will your project's GitHub organization be?",
initial: paramCase(defaultName),
},
])) as any;
let { projectName } = responses;
const projectNameConstant = constantCase(projectName);
const projectNameCapital = capitalCase(projectName);
projectName = paramCase(projectName);
responses = {
...responses,
projectName,
projectNameCapital,
projectNameConstant,
uuid: `{${uuid()}}`,
};
signale.success("Recorded responses");
signale.await(`Loading ${responses.template} template..`);
const srcPath = getTemplatePath(responses.template);
const outPath = `${process.cwd()}/${responses.projectName}/`;
copy(srcPath, outPath, responses, async (err, createdFiles) => {
if (err) throw err;
createdFiles.forEach((filePath) =>
signale.complete(`Created ${filePath}`)
);
// Copy assets which may get damaged by the templates
await reflect({
src: `${srcPath}/src/assets`,
dest: `${outPath}/src/assets`,
recursive: false,
});
signale.complete(`Copied assets`);
signale.success(
`Navigate into ${responses.projectName}/ to get started!`
);
});
} catch (e) {
signale.complete("Cancelling template creation");
}
}