From 9bc681bea1e77ed083a1f90c41de706200bd1a89 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20Hu=C5=99=C5=A5=C3=A1k?= Date: Mon, 18 Dec 2017 11:28:57 +0100 Subject: [PATCH] Fix glamorous example (#3462) It used old version 1 and when I run npm run dev it returned 500. Once I updated to 4, everything works as expected. --- examples/with-glamorous/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/with-glamorous/package.json b/examples/with-glamorous/package.json index e5804e89..8f26b34c 100644 --- a/examples/with-glamorous/package.json +++ b/examples/with-glamorous/package.json @@ -8,7 +8,7 @@ }, "dependencies": { "glamor": "^2.20.24", - "glamorous": "^1.0.0", + "glamorous": "^4.11.0", "next": "^2.0.1", "react": "^16.0.0", "react-dom": "^16.0.0"