Initial CookieCode MVP

This commit is contained in:
2026-07-21 22:12:43 +02:00
commit 5a388d3d60
10 changed files with 1266 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
CookieCode.configurer({
sortie: "#app",
afficherNotions: true,
});
CookieCode.recette("Cookie au chocolat")
.prendre("farine", 200, "g")
.prendre("sucre", 100, "g")
.prendre("chocolat", 150, "g")
.utiliser("saladier")
.ajouter("farine")
.ajouter("sucre")
.ajouter("chocolat")
.melanger()
.repeter(2, (recette) => {
recette.melanger();
})
.cuire(12, "minutes")
.servir();