You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,6 +20,7 @@
20
20
- Remove `external-stdlib` configuration option from `rescript.json`. This option was rarely used and is no longer supported.
21
21
-`js-post-build` now passes the correct output file path based on `in-source` configuration: when `in-source: true`, the path next to the source file is passed; when `in-source: false`, the path in the `lib/<module>/` directory is passed. Additionally, stdout and stderr from the post-build command are now logged. https://github.com/rescript-lang/rescript/pull/8190
22
22
-`js-post-build` command now runs in the directory containing the `rescript.json` where it is defined, instead of the unpredictable build invocation directory. This provides consistent behavior in monorepos. https://github.com/rescript-lang/rescript/pull/8195
23
+
- Remove support for deprecated `bs-dependencies`, `bs-dev-dependencies`, and `bsc-flags` configuration options. Use `dependencies`, `dev-dependencies`, and `compiler-flags` instead. https://github.com/rescript-lang/rescript/pull/8196
Copy file name to clipboardExpand all lines: docs/docson/build-schema.json
-12Lines changed: 0 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -375,14 +375,6 @@
375
375
},
376
376
"description": "a list of directories that the build system will not look into"
377
377
},
378
-
"bs-dependencies": {
379
-
"$ref": "#/definitions/dependencies",
380
-
"description": "ReScript dependencies of the library, like in package.json. Currently searches in `node_modules` (deprecated, use dependencies instead)."
381
-
},
382
-
"bs-dev-dependencies": {
383
-
"$ref": "#/definitions/dependencies",
384
-
"description": "ReScript dev dependencies of the library, like in package.json. Currently searches in `node_modules` (deprecated, use dev-dependencies instead)."
385
-
},
386
378
"dependencies": {
387
379
"$ref": "#/definitions/dependencies",
388
380
"description": "ReScript dependencies of the library, like in package.json. Currently searches in `node_modules`."
@@ -414,10 +406,6 @@
414
406
"$ref": "#/definitions/gentype-specs",
415
407
"description": "gentype config, see cristianoc/genType for more details"
416
408
},
417
-
"bsc-flags": {
418
-
"$ref": "#/definitions/compiler-flags",
419
-
"description": "Flags passed to bsc.exe (deprecated, use compiler-flags instead)"
0 commit comments