Skip to content

Commit 51b2ee2

Browse files
committed
feat: updated mapper to match latest tucana version
1 parent 3ffe7ab commit 51b2ee2

11 files changed

Lines changed: 160 additions & 2727 deletions

File tree

package/mapper/package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package/mapper/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@
3030
},
3131
"dependencies": {
3232
"@code0-tech/sagittarius-graphql-types": "0.0.0-4274ec7fd0a5bda56f11bb12be1ba5f30a79252d",
33-
"@code0-tech/tucana": "0.0.50",
33+
"@code0-tech/tucana": "0.0.56",
3434
"@protobuf-ts/runtime": "^2.11.1",
3535
"@protobuf-ts/runtime-rpc": "^2.11.1",
3636
"vite-plugin-dts": "^4.5.4"
3737
}
38-
}
38+
}

package/mapper/src/definition/mapper.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,11 +80,9 @@ export async function DefinitionMapper(path: string): Promise<Feature[]> {
8080
.map((f) => ({ name: f.feature, type: mapFunction(f.func, constructed) }))
8181
.forEach((rf) => rf.type && getFeature(rf.name).runtimeFunctions.push(rf.type));
8282

83-
console.dir(flowTypes, {depth: null})
84-
8583
flowTypes
8684
.map((f) => ({ name: f.feature, type: mapFlowType(f.flow, constructed) }))
8785
.forEach((ft) => ft.type && getFeature(ft.name).flowTypes.push(ft.type));
8886

8987
return features;
90-
}
88+
}

0 commit comments

Comments
 (0)