lapeh 2.0.8 → 2.0.9
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/bin/index.js +5 -0
- package/package.json +1 -1
package/bin/index.js
CHANGED
|
@@ -235,6 +235,11 @@ function createProject() {
|
|
|
235
235
|
if (ignoreList.includes(entry.name)) {
|
|
236
236
|
continue;
|
|
237
237
|
}
|
|
238
|
+
|
|
239
|
+
// Explicitly check for prisma/migrations to ensure it's skipped at any depth if logic changes
|
|
240
|
+
if (entry.name === 'migrations' && srcPath.includes('prisma')) {
|
|
241
|
+
continue;
|
|
242
|
+
}
|
|
238
243
|
|
|
239
244
|
if (entry.isDirectory()) {
|
|
240
245
|
fs.mkdirSync(destPath);
|