mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-15 09:06:25 +00:00
143c9a6751
Renames `lookupName` to be `packageName`. BREAKING CHANGE: Use `packageName` instead of `lookupName` if interacting with Renovate datasources directly.
12 lines
536 B
TypeScript
12 lines
536 B
TypeScript
import { regEx } from '../../../util/regex';
|
|
|
|
export const newBlockRegEx = /^\s*-\s*((\w+):\s*(.*))$/;
|
|
export const blockLineRegEx = /^\s*((\w+):\s*(.*))$/;
|
|
export const galaxyDepRegex = /[\w-]+\.[\w-]+/;
|
|
export const dependencyRegex = /^dependencies:/;
|
|
export const galaxyRegEx = regEx(
|
|
/^\s+(?<packageName>[\w.]+):\s*["'](?<version>.+)["']\s*/
|
|
);
|
|
export const nameMatchRegex = regEx(
|
|
/(?<source>((git\+)?(?:(git|ssh|https?):\/\/)?(.*@)?(?<hostname>[\w.-]+)(?:(:\d+)?\/|:))(?<depName>[\w./-]+)(?:\.git)?)(,(?<version>[\w.]*))?/
|
|
);
|