From 9b40843ce06bd785ea4fa9899783302f6d52efbc Mon Sep 17 00:00:00 2001 From: Leo Kling Date: Sun, 2 Oct 2022 08:06:52 +0200 Subject: [PATCH] yarn: add German translation (#8586) --- pages.de/common/yarn.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 pages.de/common/yarn.md diff --git a/pages.de/common/yarn.md b/pages.de/common/yarn.md new file mode 100644 index 000000000..6e0d3db1a --- /dev/null +++ b/pages.de/common/yarn.md @@ -0,0 +1,28 @@ +# yarn + +> JavaScript und Node.js Paket-Manager Alternative. +> Weitere Informationen: . + +- Installiere ein Modul global: + +`yarn global add {{modul_name}}` + +- Installiere alle in der `package.json` Datei genannten Dependencies (`install` ist optional): + +`yarn install` + +- Installiere ein Modul und füge es als Dependency der `package.json` Datei hinzu (`--dev` um es als Dev-Dependency zu installieren): + +`yarn add {{modul_name}}@{{version}}` + +- Deinstalliere ein Modul und entferne es von der `package.json` Datei: + +`yarn remove {{modul_name}}` + +- Erstelle interaktiv eine `package.json` Datei: + +`yarn init` + +- Indentifiziere ob ein Modul eine Dependency ist und liste andere Module, die von diesem abhängen: + +`yarn why {{modul_name}}`