mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-15 09:06:25 +00:00
dca3418bbd
Moves datasource, manager, platform and versioning code from lib/ into new lib/modules/ BREAKING CHANGE: External tools must update paths to datasource, manager, platform and versioning
7 lines
259 B
TypeScript
7 lines
259 B
TypeScript
import { regEx } from '../../../util/regex';
|
|
|
|
export const keyValueExtractionRegex = regEx(
|
|
/^\s*(?<key>[^\s]+):\s+"?(?<value>[^"\s]+)"?\s*$/
|
|
);
|
|
// looks for `apiVersion: argoproj.io/
|
|
export const fileTestRegex = regEx(/\s*apiVersion:\s*argoproj.io\/\s*/);
|