We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e3afb3 commit 4a0d0d6Copy full SHA for 4a0d0d6
tools/scripts/verify-turbo-conventions.mjs
@@ -116,7 +116,9 @@ function listPackageJsonPathsFromGit() {
116
.split('\n')
117
.map((entry) => entry.trim())
118
.filter(Boolean)
119
- .filter((entry) => entry === 'package.json' || entry.endsWith('/package.json'))
+ .filter(
120
+ (entry) => entry === 'package.json' || entry.endsWith('/package.json'),
121
+ )
122
.filter((entry) => !isExcludedPackageJsonPath(entry))
123
.join('\n'),
124
);
0 commit comments