Skip to content

Commit 437e719

Browse files
committed
chore: wrap objects in string
1 parent 0046732 commit 437e719

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/generateArguments.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ function generateReadmeConfigTable(argumentInfos: ArgumentInfo[]): string {
292292
defaultValueString = `\`"${defaultValue}"\``;
293293
break;
294294
case "object":
295-
defaultValueString = `\`${JSON.stringify(defaultValue)}\``;
295+
defaultValueString = `\`"${JSON.stringify(defaultValue)}"\``;
296296
break;
297297
default:
298298
throw new Error(`Unsupported default value type: ${typeof defaultValue}`);

0 commit comments

Comments
 (0)