Skip to content

Commit 08feee6

Browse files
risu729autofix-ci[bot]
andauthoredMar 2, 2025··
fix(src/default.json5): use workaround for ^ in non-multiline mode (#280)
* fix(src/default.json5): use workaround for ^ in non-multiline mode * style: apply automated fixes --------- Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
1 parent fe463fa commit 08feee6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎default.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎src/default.json5

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
datasourceTemplate: "undefined",
4040
matchStrings: [
4141
// test: https://regex101.com/r/8grHta
42-
"^['\"]?(?<depName>[^_:\\s]+?)['\"]? *= *['\"](?<currentValue>\\d.+?)['\"]",
42+
"(?:^|\r\n|\r|\n|$)['\"]?(?<depName>[^_:\\s]+?)['\"]? *= *['\"](?<currentValue>\\d.+?)['\"]",
4343
],
4444
},
4545
// renovate does not support backends

0 commit comments

Comments
 (0)
Please sign in to comment.