2
0

build: 💚 Attempt to fix cached prisma models

This commit is contained in:
Baptiste Arnaud
2022-06-11 08:56:22 +02:00
parent 2df8338505
commit 4fd5d452a3
2 changed files with 2 additions and 2 deletions

View File

@ -45,7 +45,7 @@ export const GroupNode = ({ group, groupIndex }: Props) => {
const isPreviewing =
previewingEdge?.from.groupId === group.id ||
(previewingEdge?.to.groupId === group.id &&
isNotDefined(previewingEdge.to.groupId))
isNotDefined(previewingEdge.to.blockId))
const isStartGroup =
isDefined(group.blocks[0]) && group.blocks[0].type === 'start'

View File

@ -3,7 +3,7 @@
"pipeline": {
"build": {
"dependsOn": ["^build"],
"outputs": [".next/**", "dist/**", "build/**"]
"outputs": [".next/**", "dist/**", "build/**", "node_modules/@prisma/**"]
},
"test": {
"dependsOn": [],