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 c92ed11 commit 8ed5f3dCopy full SHA for 8ed5f3d
packages/configtest/src/index.ts
@@ -27,13 +27,11 @@ class ConfigTestCommand {
27
loadedConfigPaths.forEach((path) => configPaths.add(path));
28
}
29
});
30
- } else {
31
- if (config.path.get(config.options)) {
32
- const loadedConfigPaths = config.path.get(config.options);
+ } else if (config.path.get(config.options)) {
+ const loadedConfigPaths = config.path.get(config.options);
33
34
- if (loadedConfigPaths) {
35
- loadedConfigPaths.forEach((path) => configPaths.add(path));
36
- }
+ if (loadedConfigPaths) {
+ loadedConfigPaths.forEach((path) => configPaths.add(path));
37
38
39
0 commit comments