From b055f5ebed919b0776718dfc7a1dbe777b821ce3 Mon Sep 17 00:00:00 2001 From: Elena Sharovar Date: Sun, 17 May 2020 15:42:54 +0300 Subject: [PATCH] Fixing Grunt version to 1.0.4 otherwise it fails (#855) * Develop -> Master release 0.5.29 (#849) * Merged @adgrace pull request #410 * Merged @adgrace pull request #410 * Bugfix: zone country is detected incorrect if link is used * Bugfix: zone country is detected incorrect if link is used * Decrease build size * Order zones by name * Updated 2019c files * Updated changelog * Resolve es6 loading issue where moment is undefined * Removed node 4 and 6 from travis.yml * Corrected version numbers (#845) Version numbers were incorrect so fixed it. * Fixed changelog to represent proper release versions (#839) * Fixed changelog to represent proper release versions * Removed node v4 and 6 from travis build, because as pointed by other the ES6 syntax now included in the lib aren't supported with those earlier node versions. Co-authored-by: Alexandre Couillard * Resolves es6 module loading issue * Corrected version numbers (#845) Version numbers were incorrect so fixed it. * Resolves es6 module loading issue * Yet another PR adding TypeScript declarations (#530) * Adds TypeScript declarations for moment-timezone * Remove unnecessary `moment.` qualification in typings * Move exported types to top-level so that they can all be imported as named imports - Zone class must exist at `tz.Zone` because that's where it's exposed at runtime, but the `Zone` interface is still re-exported as a named export * tsc invocation always uses locally installed tsc Co-authored-by: Elena Sharovar * Release 0.5.29 * Release 0.5.29 Co-authored-by: Brinley Ang Co-authored-by: praneeth-m Co-authored-by: Jackalex36 Co-authored-by: Alexandre Couillard Co-authored-by: Andrew Bradley * Fixing Grunt version to 1.0.4 otherwise it fails Co-authored-by: Brinley Ang Co-authored-by: praneeth-m Co-authored-by: Jackalex36 Co-authored-by: Alexandre Couillard Co-authored-by: Andrew Bradley --- .travis.yml | 2 ++ package.json | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index f3252441..7e314a1b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,6 +2,8 @@ language: node_js node_js: - "node" - "8" + - "6" + - "4" install: - npm install - npm install -g grunt-cli diff --git a/package.json b/package.json index d04c4bf2..3502ec17 100644 --- a/package.json +++ b/package.json @@ -31,7 +31,7 @@ "moment": ">= 2.9.0" }, "devDependencies": { - "grunt": "^1.0.4", + "grunt": "1.0.4", "grunt-contrib-clean": "^2.0.0", "grunt-contrib-jshint": "^2.1.0", "grunt-contrib-nodeunit": "^2.0.0",