renovate 40.9.0 → 40.9.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -9,9 +9,7 @@ var extract_1 = require("./extract");
|
|
9
9
|
Object.defineProperty(exports, "extractPackageFile", { enumerable: true, get: function () { return extract_1.extractPackageFile; } });
|
10
10
|
exports.url = '../../../config-presets.md';
|
11
11
|
exports.defaultConfig = {
|
12
|
-
|
13
|
-
.filter((name) => name !== 'package.json')
|
14
|
-
.map((name) => `^${name.replaceAll('.', '\\.')}$`),
|
12
|
+
managerFilePatterns: app_strings_1.configFileNames.filter((name) => name !== 'package.json'),
|
15
13
|
};
|
16
14
|
exports.supportedDatasources = [
|
17
15
|
github_tags_1.GithubTagsDatasource.id,
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../lib/modules/manager/renovate-config-presets/index.ts"],"names":[],"mappings":";;;AAAA,6DAA8D;AAC9D,4DAAkE;AAClE,8DAAoE;AACpE,8DAAoE;AAEpE,qCAA+C;AAAtC,6GAAA,kBAAkB,OAAA;AAEd,QAAA,GAAG,GAAG,4BAA4B,CAAC;AAEnC,QAAA,aAAa,GAAG;IAC3B,
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../lib/modules/manager/renovate-config-presets/index.ts"],"names":[],"mappings":";;;AAAA,6DAA8D;AAC9D,4DAAkE;AAClE,8DAAoE;AACpE,8DAAoE;AAEpE,qCAA+C;AAAtC,6GAAA,kBAAkB,OAAA;AAEd,QAAA,GAAG,GAAG,4BAA4B,CAAC;AAEnC,QAAA,aAAa,GAAG;IAC3B,mBAAmB,EAAE,6BAAe,CAAC,MAAM,CACzC,CAAC,IAAI,EAAE,EAAE,CAAC,IAAI,KAAK,cAAc,CAClC;CACF,CAAC;AAEW,QAAA,oBAAoB,GAAG;IAClC,kCAAoB,CAAC,EAAE;IACvB,kCAAoB,CAAC,EAAE;IACvB,gCAAmB,CAAC,EAAE;CACvB,CAAC","sourcesContent":["import { configFileNames } from '../../../config/app-strings';\nimport { GiteaTagsDatasource } from '../../datasource/gitea-tags';\nimport { GithubTagsDatasource } from '../../datasource/github-tags';\nimport { GitlabTagsDatasource } from '../../datasource/gitlab-tags';\n\nexport { extractPackageFile } from './extract';\n\nexport const url = '../../../config-presets.md';\n\nexport const defaultConfig = {\n managerFilePatterns: configFileNames.filter(\n (name) => name !== 'package.json',\n ),\n};\n\nexport const supportedDatasources = [\n GithubTagsDatasource.id,\n GitlabTagsDatasource.id,\n GiteaTagsDatasource.id,\n];\n"]}
|
package/package.json
CHANGED
package/renovate-schema.json
CHANGED
@@ -3267,16 +3267,16 @@
|
|
3267
3267
|
"description": "Configuration object for the renovate-config-presets manager",
|
3268
3268
|
"type": "object",
|
3269
3269
|
"default": {
|
3270
|
-
"
|
3271
|
-
"
|
3272
|
-
"
|
3273
|
-
"
|
3274
|
-
"
|
3275
|
-
"
|
3276
|
-
"
|
3277
|
-
"
|
3278
|
-
"
|
3279
|
-
"
|
3270
|
+
"managerFilePatterns": [
|
3271
|
+
"renovate.json",
|
3272
|
+
"renovate.json5",
|
3273
|
+
".github/renovate.json",
|
3274
|
+
".github/renovate.json5",
|
3275
|
+
".gitlab/renovate.json",
|
3276
|
+
".gitlab/renovate.json5",
|
3277
|
+
".renovaterc",
|
3278
|
+
".renovaterc.json",
|
3279
|
+
".renovaterc.json5"
|
3280
3280
|
]
|
3281
3281
|
},
|
3282
3282
|
"$ref": "#"
|