Skip to content

Commit

Permalink
comment out prisma migrations from dockerignore
Browse files Browse the repository at this point in the history
  • Loading branch information
rubys committed Dec 26, 2024
1 parent 367ab4f commit 65cfa74
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 0 deletions.
Binary file modified bun.lockb
Binary file not shown.
1 change: 1 addition & 0 deletions gdf.js
Original file line number Diff line number Diff line change
Expand Up @@ -995,6 +995,7 @@ export class GDF {
if (line.startsWith('#')) return line
if (line.trim() === '') return line
if (fs.globSync(line).some(file => files.includes(file))) return '# ' + line
if (this.prisma && line.startsWith('prisma/migrations')) return '# ' + line
return line
}).join('\n')

Expand Down

0 comments on commit 65cfa74

Please sign in to comment.