Skip to content

Commit

Permalink
fix: Temp hack to show all files to be published
Browse files Browse the repository at this point in the history
  • Loading branch information
andymac4182 committed Apr 28, 2023
1 parent 8de4ef8 commit d3539e9
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packages/lib/src/adaptors/filesystem.ts
Expand Up @@ -135,6 +135,10 @@ export class FileSystemAdaptor implements LoaderAdaptor {
}
}

filesToPublish.forEach((file) => console.log(file.absoluteFilePath));
if (filesToPublish.length === 0) {
console.warn("DIDN'T FIND FILES TO PUBLISH");
}
return filesToPublish;
}

Expand Down

0 comments on commit d3539e9

Please sign in to comment.