From bd94ec9b484c30da4915b562c59d2c2e85bcbe3f Mon Sep 17 00:00:00 2001 From: Roberto Nygaard Date: Thu, 20 Jul 2017 12:32:31 +0100 Subject: [PATCH] Some moment functions require greater version When using the library with moment 2.6.0 (as being the minimum version), an exception is being thrown due to missing moment functions. According to moment's documentation (https://momentjs.com/docs/#/query/is-same-or-after/), the required function was introduced in version 2.10.7. Therefor I'm updating the dependencies. --- bower.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bower.json b/bower.json index f4806ae..d96af66 100644 --- a/bower.json +++ b/bower.json @@ -15,7 +15,7 @@ ], "dependencies": { "angular": ">= 1.2", - "moment": ">= 2.6.0", + "moment": ">= 2.10.7", "moment-range": "~1.0.1" }, "license": "MIT",