From 6e2e6e84ffc5db96612c9c03f84002839ee3f1e7 Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Sun, 7 Jun 2020 02:52:00 +0000 Subject: [PATCH 1/3] fix: upgrade moment-timezone from 0.5.28 to 0.5.29 Snyk has created this PR to upgrade moment-timezone from 0.5.28 to 0.5.29. See this package in NPM: https://www.npmjs.com/package/moment-timezone See this project in Snyk: https://app.snyk.io/org/codingtools/project/69f63852-fccf-4e2e-aeaf-6785477b4de5?utm_source=github&utm_medium=upgrade-pr --- package-lock.json | 6 +++--- package.json | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/package-lock.json b/package-lock.json index 11677f5..79f4692 100644 --- a/package-lock.json +++ b/package-lock.json @@ -2671,9 +2671,9 @@ "integrity": "sha512-bV7f+6l2QigeBBZSM/6yTNq4P2fNpSWj/0e7jQcy87A8e7o2nAfP/34/2ky5Vw4B9S446EtIhodAzkFCcR4dQg==" }, "moment-timezone": { - "version": "0.5.28", - "resolved": "https://registry.npmjs.org/moment-timezone/-/moment-timezone-0.5.28.tgz", - "integrity": "sha512-TDJkZvAyKIVWg5EtVqRzU97w0Rb0YVbfpqyjgu6GwXCAohVRqwZjf4fOzDE6p1Ch98Sro/8hQQi65WDXW5STPw==", + "version": "0.5.29", + "resolved": "https://registry.npmjs.org/moment-timezone/-/moment-timezone-0.5.29.tgz", + "integrity": "sha512-qWtUhRIk29zviEFAhttY0fDbM/zsu/OlCRoeQG8vxuH6XcTTuji9ILJkOdxjr+vzIv0J39RsO/SPTuMvzm90wA==", "requires": { "moment": ">= 2.9.0" } diff --git a/package.json b/package.json index 01fa532..850ee05 100644 --- a/package.json +++ b/package.json @@ -27,7 +27,7 @@ "json-2-csv": "^3.6.2", "minify": "^5.1.1", "moment": "^2.24.0", - "moment-timezone": "^0.5.28", + "moment-timezone": "^0.5.29", "nyc": "^15.0.1", "ora": "^4.0.4", "signale": "^1.4.0", From 8e1ab9d5028dd5494f68e846bdcf5e527f2b2da9 Mon Sep 17 00:00:00 2001 From: ashish Date: Sun, 2 Aug 2020 06:59:54 +0530 Subject: [PATCH 2/3] package-lock.json fix --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7c7c472..246b414 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ CLI for Developers **cdt** is a command line utililty for developers. It is focused on facilitating the development of applications by helping devs to do required tasks through utilities provided to enhance efficienty. -## Support the project ⭐ +## Supporting the project ⭐ If you feel awesome and want to support us in a small way, please consider starring and sharing the repo! This helps us getting known and grow the community. 🙏 From a520f978b4964dd870c71becbe18f15c4fb7341d Mon Sep 17 00:00:00 2001 From: ashish Date: Sun, 2 Aug 2020 07:06:55 +0530 Subject: [PATCH 3/3] [momentjs] - moment version fixed Signed-off-by: Ashish Patel Signed-off-by: ashish --- src/commands/datetime.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/datetime.ts b/src/commands/datetime.ts index 0370bcb..9e32413 100644 --- a/src/commands/datetime.ts +++ b/src/commands/datetime.ts @@ -49,7 +49,7 @@ export default class Datetime extends Command { if (flags.timezone) return flags.timezone else - return moment.tz.guess(true) + return moment.tz.guess() } // tslint:disable-next-line:no-unused