Skip to content

Commit

Permalink
Fix dict error in docs test by upgrading even more
Browse files Browse the repository at this point in the history
  • Loading branch information
fhammerschmidt committed Apr 3, 2024
1 parent 32a0008 commit 51ff1b2
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@
"src/**/*.mjs"
],
"peerDependencies": {
"rescript": "^11.1.0-rc.6"
"rescript": "^11.1.0-rc.7"
},
"devDependencies": {
"@babel/code-frame": "7.18.6",
"@rescript/tools": "^0.5.0",
"rescript": "11.1.0-rc.6"
"rescript": "^11.1.0-rc.7"
}
}
}
2 changes: 1 addition & 1 deletion scripts/DocTests.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ var bscBin = Path.join(compilerDir, "node_modules", ".bin", "bsc");
var rescriptCoreCompiled = Path.join(compilerDir, "node_modules", "@rescript", "core", "lib", "ocaml");

function makePackageJson(coreVersion) {
return "{\n \"name\": \"test-compiler-examples\",\n \"version\": \"1.0.0\",\n \"dependencies\": {\n \"@rescript/core\": \"file:rescript-core-" + coreVersion + ".tgz\",\n \"rescript\": \"^11.0.1\"\n }\n}\n";
return "{\n \"name\": \"test-compiler-examples\",\n \"version\": \"1.0.0\",\n \"dependencies\": {\n \"@rescript/core\": \"file:rescript-core-" + coreVersion + ".tgz\",\n \"rescript\": \"11.1.0-rc.7\"\n }\n}\n";
}

var rescriptJson = "{\n \"name\": \"dummy\",\n \"sources\": {\n \"dir\": \"dummy\",\n \"subdirs\": true\n },\n \"bs-dependencies\": [\n \"@rescript/core\"\n ],\n \"bsc-flags\": [\n \"-open RescriptCore\"\n ]\n}";
Expand Down
2 changes: 1 addition & 1 deletion scripts/DocTests.res
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ let makePackageJson = coreVersion =>
"version": "1.0.0",
"dependencies": {
"@rescript/core": "file:rescript-core-${coreVersion}.tgz",
"rescript": "^11.0.1"
"rescript": "11.1.0-rc.7"
}
}
`
Expand Down

0 comments on commit 51ff1b2

Please sign in to comment.