This repository has been archived by the owner on Nov 23, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Accept multiple inputNodes within
resolveInputDirectory
- Loading branch information
Showing
3 changed files
with
78 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
/** | ||
* Uses eslint (private) api to see if eslint config includes a `overrides` flag. | ||
* | ||
* inputNode type is a bit tricky here. We are expecting three different cases: | ||
* if it's string, we will use it as a directory and let eslint do the work. | ||
* | ||
* if it's a source node, use the `sourceDirectory` property. | ||
* | ||
* if it's a transform node, recursively call same function with all of its | ||
* inputNodes. if any of the input directories contain `overrides` eslint | ||
* config, return true | ||
* | ||
* While it's not ideal we iterate through all the `inputNodes` of a transform node, | ||
* the input size should be very small. | ||
*/ | ||
const nodeIncludesOverrides = (inputNode, eslintCli) => { | ||
if (typeof inputNode === 'string') { | ||
return eslintCli.config | ||
.getConfigHierarchy(inputNode) | ||
.some(node => node.overrides); | ||
} | ||
|
||
const { nodeType, sourceDirectory } = inputNode.__broccoliGetInfo__(); | ||
if (nodeType === 'transform') { | ||
const nodesIncludesOverrides = inputNode._inputNodes.map(node => | ||
nodeIncludesOverrides(node, eslintCli) | ||
); | ||
return nodesIncludesOverrides.some(Boolean); | ||
} | ||
|
||
return nodeIncludesOverrides(sourceDirectory, eslintCli); | ||
}; | ||
|
||
module.exports = nodeIncludesOverrides; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters