diff --git a/packages/project/src/util/properties.ts b/packages/project/src/util/properties.ts index 7a5520b..a6bbfd8 100644 --- a/packages/project/src/util/properties.ts +++ b/packages/project/src/util/properties.ts @@ -8,5 +8,5 @@ export async function parseProperties(filename: string) { export async function writeProperties(filename: string, data: any) { const serialized = ini.stringify(data); - return writeFile(filename, data); -} \ No newline at end of file + return writeFile(filename, serialized); +}