ericcornelissen / depreman

Manage npm deprecations
https://www.npmjs.com/package/depreman
GNU Affero General Public License v3.0
0 stars 0 forks source link

Don't ignore expiry date with `*` wildcard rules #48

Closed ericcornelissen closed 2 weeks ago

ericcornelissen commented 2 weeks ago

Without this change the expiry date in the following configuration would be ignored for pacakge@1.0.0 by depreman.

{
    "package@1.0.0": {
        "*": {
            "#ignore": "expired",
            "#expire": "2024-0101",
        }
    }
}