mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-22 20:46:25 +00:00
8bd77f747b
Removes Gradle `deepExtract` option BREAKING CHANGE: Option `deepExtract` is now removed and will be ignored
52 lines
1.3 KiB
TypeScript
52 lines
1.3 KiB
TypeScript
export { MAVEN_REPO } from '../../datasource/maven/common';
|
|
|
|
export const JCENTER_REPO = 'https://jcenter.bintray.com/';
|
|
export const GOOGLE_REPO = 'https://dl.google.com/android/maven2/';
|
|
export const GRADLE_PLUGIN_PORTAL_REPO = 'https://plugins.gradle.org/m2/';
|
|
|
|
// TODO: convert to types
|
|
// eslint-disable-next-line typescript-enum/no-enum
|
|
export enum TokenType {
|
|
Space = 'space',
|
|
LineComment = 'lineComment',
|
|
MultiComment = 'multiComment',
|
|
Newline = 'newline',
|
|
|
|
Semicolon = 'semicolon',
|
|
Colon = 'colon',
|
|
Dot = 'dot',
|
|
Comma = 'comma',
|
|
Operator = 'operator',
|
|
|
|
Assignment = 'assignment',
|
|
|
|
Word = 'word',
|
|
|
|
LeftParen = 'leftParen',
|
|
RightParen = 'rightParen',
|
|
|
|
LeftBracket = 'leftBracket',
|
|
RightBracket = 'rightBracket',
|
|
|
|
LeftBrace = 'leftBrace',
|
|
RightBrace = 'rightBrace',
|
|
|
|
SingleQuotedStart = 'singleQuotedStart',
|
|
SingleQuotedFinish = 'singleQuotedFinish',
|
|
|
|
DoubleQuotedStart = 'doubleQuotedStart',
|
|
StringInterpolation = 'interpolation',
|
|
IgnoredInterpolationStart = 'ignoredInterpolation',
|
|
Variable = 'variable',
|
|
DoubleQuotedFinish = 'doubleQuotedFinish',
|
|
|
|
TripleSingleQuotedStart = 'tripleQuotedStart',
|
|
TripleDoubleQuotedStart = 'tripleDoubleQuotedStart',
|
|
TripleQuotedFinish = 'tripleQuotedFinish',
|
|
|
|
Chars = 'chars',
|
|
EscapedChar = 'escapedChar',
|
|
String = 'string',
|
|
|
|
UnknownFragment = 'unknownFragment',
|
|
}
|