We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 30c5966 commit 06437ddCopy full SHA for 06437dd
Tocsoft.GraphQLCodeGen.Cli/CodeGenerator.cs
@@ -68,9 +68,19 @@ internal async Task LoadSource()
68
internal void Export()
69
{
70
Directory.CreateDirectory(Path.GetDirectoryName(this.settings.OutputPath));
71
- File.WriteAllText(this.settings.OutputPath, GeneratedCode);
72
- }
+ bool skipWriteText = false;
+ if (File.Exists(this.settings.OutputPath))
73
+ {
74
+ var currentText = File.ReadAllText(this.settings.OutputPath);
75
+ skipWriteText = (currentText == GeneratedCode);
76
+ }
77
78
+ if (!skipWriteText)
79
80
+ File.WriteAllText(this.settings.OutputPath, GeneratedCode);
81
82
83
+
84
internal void Render()
85
86
if (!HasParsingErrors)
0 commit comments