export const YARN = `yarn`;
export const NPM = `npm`;
export const EMPTY_FOLDER_INDICATOR = `gitkeep`;

export type GeneratorType = 'init'|'template';
export const INIT_TYPE: GeneratorType = 'init';
export const TEMPLATE_TYPE: GeneratorType = 'template';