Skip to content

Commit

Permalink
Fix merge conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
fhammerschmidt committed Nov 14, 2023
1 parent 65f27fa commit baae0d6
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions src/common/CompilerManagerHook.res
Original file line number Diff line number Diff line change
Expand Up @@ -108,13 +108,11 @@ module Semver = {
}

module CdnMeta = {
let experimentalVersions = ["v11.0.0-rc.3", "v11.0.0-beta.4", "v11.0.0-beta.1", "v11.0.0-alpha.5"]
let getCompilerUrl = (version): string =>
`https://cdn.rescript-lang.org/${Semver.toString(version)}/compiler.js`

let getCompilerUrl = (version: string): string =>
`https://cdn.rescript-lang.org/${version}/compiler.js`

let getLibraryCmijUrl = (version: string, libraryName: string): string =>
`https://cdn.rescript-lang.org/${version}/${libraryName}/cmij.js`
let getLibraryCmijUrl = (version, libraryName: string): string =>
`https://cdn.rescript-lang.org/${Semver.toString(version)}/${libraryName}/cmij.js`
}

module FinalResult = {
Expand Down

0 comments on commit baae0d6

Please sign in to comment.