File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -27,6 +27,7 @@ const MAVEN_VERSIONS_FILE_PATH = path.join(
2727
2828async function getLatestHermesNightlyVersion ( ) /*: Promise<{
2929 compilerVersion: string,
30+ compilerV1Version: string,
3031 runtimeVersion: string,
3132 runtimeV1Version: string,
3233}> */ {
@@ -43,6 +44,7 @@ async function getLatestHermesNightlyVersion() /*: Promise<{
4344
4445 return {
4546 compilerVersion,
47+ compilerV1Version,
4648 // runtime version should match the compiler version
4749 runtimeVersion : compilerVersion ,
4850 runtimeV1Version : compilerV1Version ,
@@ -84,7 +86,7 @@ async function updateHermesRuntimeDependenciesVersions(
8486async function updateHermesVersionsToNightly ( ) {
8587 const hermesVersions = await getLatestHermesNightlyVersion ( ) ;
8688 await updateHermesCompilerVersionInDependencies (
87- hermesVersions . compilerVersion ,
89+ hermesVersions . compilerV1Version ,
8890 ) ;
8991 await updateHermesRuntimeDependenciesVersions (
9092 hermesVersions . runtimeVersion ,
You can’t perform that action at this time.
0 commit comments