directus-template-cli 0.7.6 → 0.7.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -114,7 +114,7 @@ export function createGitHub(token) {
114
114
  });
115
115
  if (!Array.isArray(rootContent))
116
116
  return [];
117
- const directories = rootContent.filter(item => item.type === 'dir');
117
+ const directories = rootContent.filter(item => item.type === 'dir' && !item.name.startsWith('.') && !item.name.startsWith('_'));
118
118
  // Fetch package.json for each directory concurrently
119
119
  const templateInfos = await Promise.all(directories.map(async (dir) => {
120
120
  const packageJsonPath = joinPath(repo.path || '', dir.path, 'package.json');
@@ -401,5 +401,5 @@
401
401
  ]
402
402
  }
403
403
  },
404
- "version": "0.7.6"
404
+ "version": "0.7.7"
405
405
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "directus-template-cli",
3
- "version": "0.7.6",
3
+ "version": "0.7.7",
4
4
  "description": "CLI Utility for applying templates to a Directus instance.",
5
5
  "author": "bryantgillespie @bryantgillespie",
6
6
  "type": "module",