@renovatebot/pep440
Advanced tools
Comparing version 2.1.2 to 2.1.3
import type { Pep440Version } from "./shared"; | ||
export const VERSION_PATTERN: string; | ||
export function clean(version: string): string | null; | ||
export function explain(version: string): Pep440Version | null; | ||
export function parse(version: string): Pep440Version | null; | ||
export function stringify(version: string): string | null; | ||
export function valid(version: string): string | null; | ||
export function clean(version: string | null | undefined): string | null; | ||
export function explain( | ||
version: string | null | undefined | ||
): Pep440Version | null; | ||
export function parse( | ||
version: string | null | undefined, | ||
regex?: RegExp | ||
): Pep440Version | null; | ||
export function stringify(version: string | null | undefined): string | null; | ||
export function valid(version: string | null | undefined): string | null; |
{ | ||
"name": "@renovatebot/pep440", | ||
"version": "2.1.2", | ||
"version": "2.1.3", | ||
"description": "PEP440 implementation in JavaScript", | ||
@@ -43,3 +43,3 @@ "main": "index.js", | ||
"husky": "8.0.1", | ||
"jest": "28.1.0", | ||
"jest": "28.1.1", | ||
"npm-run-all": "4.1.5", | ||
@@ -46,0 +46,0 @@ "prettier": "2.6.2", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
34342
727