@stackql/provider-utils 0.3.4 → 0.3.5
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.
package/package.json
CHANGED
|
@@ -158,6 +158,15 @@ export async function generate(options) {
|
|
|
158
158
|
const files = fs.readdirSync(inputDir);
|
|
159
159
|
|
|
160
160
|
for (const filename of files) {
|
|
161
|
+
|
|
162
|
+
const filePath = path.join(inputDir, filename);
|
|
163
|
+
|
|
164
|
+
// Skip directories
|
|
165
|
+
if (fs.statSync(filePath).isDirectory()) {
|
|
166
|
+
logger.info(`📁 Skipping directory: ${filename}`);
|
|
167
|
+
continue;
|
|
168
|
+
}
|
|
169
|
+
|
|
161
170
|
if (skipFiles.includes(filename)) {
|
|
162
171
|
logger.info(`⭐️ Skipping ${filename} (matched --skip)`);
|
|
163
172
|
continue;
|