mirror of
https://github.com/dzeiocom/dotfiles.git
synced 2025-04-23 11:22:09 +00:00
14 lines
305 B
TypeScript
14 lines
305 B
TypeScript
import SimpleModule from "../SimpleModule";
|
|
import { getUserHome } from "../Functions";
|
|
import FileInterface from "../FileInterface";
|
|
|
|
export default class Yarn extends SimpleModule {
|
|
files: FileInterface[] = [
|
|
{
|
|
filename: "yarnrc",
|
|
path: `${getUserHome()}/.yarnrc`
|
|
}
|
|
]
|
|
moduleName = "Yarn"
|
|
}
|