We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b4cf54d commit e840abcCopy full SHA for e840abc
compiler/bsb/bsb_config_parse.ml
@@ -261,6 +261,12 @@ let interpret_json ~(filename : string) ~(json : Ext_json_types.t)
261
in
262
let bsc_flags = extract_string_list map Bsb_build_schemas.bsc_flags in
263
let jsx = Bsb_jsx.from_map map in
264
+ let jsx, bsc_flags =
265
+ match package_kind with
266
+ | Pinned_dependency x | Dependency x ->
267
+ ({jsx with version = x.jsx.version}, bsc_flags)
268
+ | Toplevel -> (jsx, bsc_flags)
269
+ in
270
{
271
pinned_dependencies;
272
gentype_config;
0 commit comments