From 5a6bf802ce7ec91c9e945807f3ce00807d07a77a Mon Sep 17 00:00:00 2001 From: Marc Bachmann Date: Mon, 15 Jan 2018 20:06:59 +0100 Subject: [PATCH] Fix TodoMVC example (#618) In choo-devtools@2.0.0 there were some conflicting methods. On https://github.com/choojs/choo-devtools/blob/v2.0.0/index.js#L37 `window.choo.log` was set, which was a getter defined in https://github.com/choojs/choo-devtools/blob/v2.0.0/lib/log.js#L21 This basically broke the whole app. --- example/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/package.json b/example/package.json index a3faefa..fdd3459 100644 --- a/example/package.json +++ b/example/package.json @@ -9,7 +9,7 @@ "test": "standard && node test.js" }, "dependencies": { - "choo-devtools": "2.0.0", + "choo-devtools": "^2.3.3", "sheetify": "^6.0.1", "todomvc-app-css": "^2.0.6", "todomvc-common": "^1.0.3"