fix(build): modernize package exports, tooling configuration, and test setup

This commit is contained in:
2026-05-01 18:29:53 +00:00
parent e42d8fd229
commit 536e3c52d4
10 changed files with 7063 additions and 4113 deletions
+2 -2
View File
@@ -7,11 +7,11 @@ export let yamlStringToObject = async (
};
export let objectToYamlString = async (
objectArg
objectArg: unknown
): Promise<string> => {
return plugins.yaml.stringify(objectArg);
};
export let getYamlDocFromString = async (stringArg: string) => {
return plugins.yaml.parseDocument(stringArg);
}
};