Skip to content

Commit d1fbed4

Browse files
committed
Fix path in DefinitionMapper to correctly reference definitions
1 parent 7bc3834 commit d1fbed4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

package/mapper/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import {DefinitionMapper, Feature} from "./definition/mapper.js";
22
import * as fs from "node:fs";
33
import * as path from "node:path";
44

5-
DefinitionMapper("../../definitions").then((value: Feature[]) => {
5+
DefinitionMapper("../../../definitions").then((value: Feature[]) => {
66
const functions = value.flatMap(v => v.runtimeFunctions);
77
const types = value.flatMap(v => v.dataTypes);
88
const flows = value.flatMap(v => v.flowTypes);

0 commit comments

Comments
 (0)