We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3413770 commit f9e1576Copy full SHA for f9e1576
scripts/api-examples/merge-examples.js
@@ -43,7 +43,7 @@ module.exports = {
43
console.error(`${folder} does not have a Smithy model.`);
44
continue;
45
}
46
- const modelFolders = readdirSync(join(location, folder));
+ const modelFolders = readdirSync(join(location, folder)).filter(name => !name.startsWith("."));
47
for (const c2jFolder of modelFolders.filter((name) => name !== "smithy")) {
48
const c2jFiles = readdirSync(join(location, folder, c2jFolder));
49
for (const examples of c2jFiles.filter((file) => file.includes("examples"))) {
0 commit comments