Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | 3x 3x | /**
* The monorepo files that need to be parsed or modified.
*/
export const MonorepoFile = {
TsConfig: 'tsconfig.json',
TsConfigBuild: 'tsconfig.build.json',
} as const;
export type MonorepoFile = (typeof MonorepoFile)[keyof typeof MonorepoFile];
/**
* Placeholder values in package template files that need to be replaced with
* actual values corresponding to the new package.
*/
export const Placeholder = {
CurrentYear: 'CURRENT_YEAR',
PackageName: '@ocap/template-package',
PackageDescription: 'PACKAGE_DESCRIPTION',
PackageDirectoryName: 'template-package',
} as const;
export type Placeholder = (typeof Placeholder)[keyof typeof Placeholder];
|