From 6e1847064248f5d43b41a108478c170cbf85cf82 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=81=8F=E5=8F=B3?= Date: Fri, 21 Jul 2017 15:39:15 +0800 Subject: [PATCH] Fix css-animation version 1.2.x will cause bug below: ``` Uncaught DOMException: Failed to execute 'add' on 'DOMTokenList': The token provided ('[object Object]') contains HTML space characters, which are not valid in tokens. ``` --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index b27b4e8..ae9b008 100644 --- a/package.json +++ b/package.json @@ -55,7 +55,7 @@ ], "dependencies": { "babel-runtime": "6.x", - "css-animation": "1.x", + "css-animation": "^1.3.2", "prop-types": "15.x" } }