-
-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Style the exception expiry date if it is more than one or five years ago
- Loading branch information
Showing
12 changed files
with
58 additions
and
113 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,5 @@ | ||
export type DateAnalysis = { | ||
valid: boolean; | ||
expired?: boolean; | ||
days?: number; | ||
months?: number; | ||
years?: number; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,80 +1,17 @@ | ||
[ | ||
[ | ||
"1165", | ||
"\u001b[32mactive\u001b[0m", | ||
"", | ||
"" | ||
], | ||
[ | ||
"1890", | ||
"\u001b[32mactive\u001b[0m", | ||
"", | ||
"" | ||
], | ||
[ | ||
"975", | ||
"\u001b[31mexpired\u001b[0m", | ||
"Thu, 11 Mar 2021 11:28:54 GMT", | ||
"" | ||
], | ||
[ | ||
"976", | ||
"\u001b[33minactive\u001b[0m", | ||
"", | ||
"" | ||
], | ||
[ | ||
"985", | ||
"\u001b[32mactive\u001b[0m", | ||
"", | ||
"" | ||
], | ||
[ | ||
"1084", | ||
"\u001b[31mexpired\u001b[0m", | ||
"Thu, 11 Mar 2021 11:28:54 GMT", | ||
"Inactive package; consider replacing it." | ||
], | ||
[ | ||
"1179", | ||
"\u001b[31mexpired\u001b[0m", | ||
"Thu, 11 Mar 2021 11:28:54 GMT", | ||
"" | ||
], | ||
[ | ||
"1213", | ||
"\u001b[32mactive\u001b[0m", | ||
"", | ||
"Ignored since we don't use xxx method" | ||
], | ||
[ | ||
"1556", | ||
"\u001b[31mexpired\u001b[0m", | ||
"Thu, 11 Mar 2021 11:28:54 GMT", | ||
"Issue: https://github.com/jeemok/better-npm-audit/issues/28" | ||
], | ||
[ | ||
"1651", | ||
"\u001b[31mexpired\u001b[0m", | ||
"Thu, 11 Mar 2021 11:28:54 GMT", | ||
"This will be fixed by the maintainers by June 14" | ||
], | ||
[ | ||
"1654", | ||
"\u001b[32mactive\u001b[0m", | ||
"Fri, 31 Dec 2021 16:00:00 GMT", | ||
"" | ||
], | ||
[ | ||
"2100", | ||
"\u001b[32mactive\u001b[0m", | ||
"", | ||
"Unused" | ||
], | ||
[ | ||
"Note", | ||
"\u001b[31minvalid\u001b[0m", | ||
"", | ||
"personal note" | ||
] | ||
] | ||
["1165", "\u001b[32mactive\u001b[0m", "", ""], | ||
["1890", "\u001b[32mactive\u001b[0m", "", ""], | ||
["975", "\u001b[31mexpired\u001b[0m", "Thu, 11 Mar 2021 11:28:54 GMT", ""], | ||
["976", "\u001b[33minactive\u001b[0m", "", ""], | ||
["985", "\u001b[32mactive\u001b[0m", "", ""], | ||
["1084", "\u001b[31mexpired\u001b[0m", "Thu, 11 Mar 2021 11:28:54 GMT", "Inactive package; consider replacing it."], | ||
["1179", "\u001b[31mexpired\u001b[0m", "Thu, 11 Mar 2021 11:28:54 GMT", ""], | ||
["1213", "\u001b[32mactive\u001b[0m", "", "Ignored since we don't use xxx method"], | ||
["1556", "\u001b[31mexpired\u001b[0m", "Thu, 11 Mar 2021 11:28:54 GMT", "Issue: https://github.com/jeemok/better-npm-audit/issues/28"], | ||
["1651", "\u001b[31mexpired\u001b[0m", "Thu, 11 Mar 2021 11:28:54 GMT", "This will be fixed by the maintainers by June 14"], | ||
["1654", "\u001b[32mactive\u001b[0m", "Fri, 31 Dec 2021 16:00:00 GMT", ""], | ||
["2000", "\u001b[32mactive\u001b[0m", "\u001b[33mMon, 01 Jan 2024 00:00:00 GMT\u001b[0m", ""], | ||
["2001", "\u001b[32mactive\u001b[0m", "\u001b[31mTue, 01 Jan 2030 00:00:00 GMT\u001b[0m", ""], | ||
["2100", "\u001b[32mactive\u001b[0m", "", "Unused"], | ||
["Note", "\u001b[31minvalid\u001b[0m", "", "personal note"] | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters