8 lines
382 B
YAML
8 lines
382 B
YAML
# Base packaging patterns shared across all functions
|
|
# Note: Prisma 7 uses driver adapters (no binary engines) - everything is in the layer
|
|
pattern1: 'src/common/**'
|
|
pattern2: 'common/**'
|
|
# Prisma packages are now provided by the layer, no need to include in function package
|
|
pattern3: '!node_modules/@prisma/**'
|
|
pattern4: '!node_modules/.prisma/**'
|
|
pattern5: '!node_modules/pg/**' |