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 b9ac050 commit d2b7dc2Copy full SHA for d2b7dc2
cli/src/index.ts
@@ -175,10 +175,10 @@ async function main() {
175
const referenceFile = path.join(cwd, referencesFileName);
176
if (await fs.exists(referenceFile)) {
177
infoOut(`Found reference file: ${referenceFile}`);
178
- targets.handleRefsFile(referenceFile);
+ await targets.handleRefsFile(referenceFile);
179
}
180
181
- targets.loadObjectsFromPaths(files);
+ await targets.loadObjectsFromPaths(files);
182
183
for (const filePath of files) {
184
const result = await targets.parseFile(filePath);
0 commit comments