lapeh 2.0.7 → 2.0.8
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 +3 -0
- package/package.json +1 -1
package/bin/index.js
CHANGED
|
@@ -219,6 +219,9 @@ function createProject() {
|
|
|
219
219
|
'bin', // Don't copy the CLI script itself
|
|
220
220
|
'package-lock.json',
|
|
221
221
|
'.DS_Store',
|
|
222
|
+
'prisma/migrations', // Exclude existing migrations
|
|
223
|
+
'prisma/dev.db', // Exclude sqlite db if exists
|
|
224
|
+
'prisma/dev.db-journal',
|
|
222
225
|
projectName // Don't copy the destination folder itself if creating inside the template
|
|
223
226
|
];
|
|
224
227
|
|