Skip to content

Commit 3845160

Browse files
authored
Disable renovate grouping (#1765)
* Update renovate config * Bump prettier and fix config * Fix format
1 parent d4c98ee commit 3845160

File tree

5 files changed

+14
-19
lines changed

5 files changed

+14
-19
lines changed

.prettierrc

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22
"semi": false,
33
"singleQuote": true,
44
"printWidth": 100,
5-
"parser": "typescript",
65
"trailingComma": "none",
76
"arrowParens": "avoid",
8-
"endOfLine": "lf"
7+
"endOfLine": "auto"
98
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@
8080
"jest-html-reporter": "^3.2.0",
8181
"jsdoc": "3.6.11",
8282
"jsdom": "^19.0.0",
83-
"prettier": "^3.5.2",
83+
"prettier": "^3.6.2",
8484
"ts-jest": "^29.0.0",
8585
"typescript": "^4.0.3",
8686
"typescript-eslint": "^8.8.1"

renovate.json

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,12 @@
11
{
22
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
3-
"extends": [
4-
"config:base", ":dependencyDashboard", "group:allNonMajor", ":label(dependencies)"
5-
],
6-
"major": {
7-
"dependencyDashboardApproval": true
8-
},
3+
"extends": ["config:recommended", ":dependencyDashboard", ":label(dependencies)"],
94
"packageRules": [
10-
{
11-
"matchPackagePatterns": ["*"],
12-
"rangeStrategy": "update-lockfile"
13-
}
5+
{
6+
"rangeStrategy": "update-lockfile",
7+
"matchPackageNames": ["*"],
8+
"minimumReleaseAge": "5 days"
9+
}
1410
],
1511
"enabledManagers": ["npm"]
1612
}

src/createContext.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ export const importBuiltins = (context: Context, externalBuiltIns: CustomBuiltIn
277277
if (s.length === 1 && s[0] !== undefined && typeof s[0] !== 'string') {
278278
throw new TypeError('display expects the second argument to be a string')
279279
}
280-
return rawDisplay(stringify(v), s[0]), v
280+
return (rawDisplay(stringify(v), s[0]), v)
281281
}
282282
const displayList = (v: Value, ...s: string[]) => {
283283
if (s.length === 1 && s[0] !== undefined && typeof s[0] !== 'string') {

yarn.lock

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5377,7 +5377,7 @@ __metadata:
53775377
jsdoc: "npm:3.6.11"
53785378
jsdom: "npm:^19.0.0"
53795379
lodash: "npm:^4.17.21"
5380-
prettier: "npm:^3.5.2"
5380+
prettier: "npm:^3.6.2"
53815381
source-map: "npm:0.7.3"
53825382
ts-jest: "npm:^29.0.0"
53835383
typescript: "npm:^4.0.3"
@@ -6456,12 +6456,12 @@ __metadata:
64566456
languageName: node
64576457
linkType: hard
64586458

6459-
"prettier@npm:^3.5.2":
6460-
version: 3.5.2
6461-
resolution: "prettier@npm:3.5.2"
6459+
"prettier@npm:^3.6.2":
6460+
version: 3.6.2
6461+
resolution: "prettier@npm:3.6.2"
64626462
bin:
64636463
prettier: bin/prettier.cjs
6464-
checksum: 10c0/d7b597ed33f39c32ace675896ad187f06a3e48dc8a1e80051b5c5f0dae3586d53981704b8fda5ac3b080e6c2e0e197d239131b953702674f044351621ca5e1ac
6464+
checksum: 10c0/488cb2f2b99ec13da1e50074912870217c11edaddedeadc649b1244c749d15ba94e846423d062e2c4c9ae683e2d65f754de28889ba06e697ac4f988d44f45812
64656465
languageName: node
64666466
linkType: hard
64676467

0 commit comments

Comments
 (0)