Reorder LKG tasks so protocol build isn't using partial LKG (#40717)

* Reorder LKG tasks so protocl build isnt using partial LKG

* Update scripts/produceLKG.ts

Co-authored-by: Daniel Rosenwasser <DanielRosenwasser@users.noreply.github.com>

Co-authored-by: Daniel Rosenwasser <DanielRosenwasser@users.noreply.github.com>
This commit is contained in:
Wesley Wigham
2020-09-23 00:49:12 -07:00
committed by GitHub
parent 61910e8c97
commit 83574ba135

View File

@@ -15,9 +15,9 @@ async function produceLKG() {
await copyLibFiles();
await copyLocalizedDiagnostics();
await copyTypesMap();
await buildProtocol();
await copyScriptOutputs();
await copyDeclarationOutputs();
await buildProtocol();
await writeGitAttributes();
}