Skip to content

Commit 1dba7a5

Browse files
committed
more fixes
1 parent f67fe72 commit 1dba7a5

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

packages/playground/scripts/generate_cmijs.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ exec("yarn rescript legacy");
3030
// Otherwise we can't use them for compilation within the playground.
3131
buildCmij(compilerRootDir, "compiler-builtins");
3232

33-
const packages = resConfig["bs-dependencies"];
33+
const packages = resConfig["dependencies"];
3434
for (const pkgName of packages) {
3535
buildCmij(
3636
path.join(compilerRootDir, "node_modules", pkgName),

tests/ounit_tests/ounit_bsb_regex_tests.ml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ let suites =
3737
"sources": [
3838
"src"
3939
],
40-
"bs-dependencies" : [
40+
"dependencies": [
4141
]
4242
}
4343
|}
@@ -48,7 +48,7 @@ let suites =
4848
"sources": [
4949
"src"
5050
],
51-
"bs-dependencies" : [
51+
"dependencies": [
5252
]
5353
}
5454
|}

tests/syntax_tests/data/idempotency/genType/src/Config_.res

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ let readConfig = (~bsVersion, ~getConfigFile, ~getBsConfigFile, ~namespace) => {
299299
| Some(True(_)) => {...config, namespace: namespace}
300300
| _ => config
301301
}
302-
let config = switch map->String_map.find_opt("bs-dependencies") {
302+
let config = switch map->String_map.find_opt("dependencies") {
303303
| Some(Arr({content})) =>
304304
let strings = ref(list{})
305305
content->Array.iter(x =>

0 commit comments

Comments
 (0)