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 75a3c8d commit fc9d593Copy full SHA for fc9d593
lib/projectPreprocessor.js
@@ -64,6 +64,9 @@ class ProjectPreprocessor {
64
if (project.dependencies && project.dependencies.length) {
65
// Do a dependency lookahead to apply any extensions that might affect this project
66
await this.dependencyLookahead(project, project.dependencies);
67
+ } else {
68
+ // When using the static translator for instance dependencies is not defined and will fail later access calls to it
69
+ project.dependencies = [];
70
}
71
72
const {extensions} = await this.loadProjectConfiguration(project);
0 commit comments