ntts
Version:
A CLI tool for refactoring an existing NodeJs application to a fully functional TypeScript application.
18 lines (15 loc) • 302 B
text/typescript
export interface PackageManager {
install: string;
add: string;
init: string;
}
export const NPM: PackageManager = {
install: 'npm install',
add: 'npm install',
init: 'npm init -y',
};
export const Yarn: PackageManager = {
install: 'yarn',
add: 'yarn add',
init: 'yarn init -y',
};