Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
- Use a single vendored @rescript/react package across the repo. https://github.com/rescript-lang/rescript/pull/7525
- Improve deprecated attribute extraction and support record form. https://github.com/rescript-lang/rescript/pull/8396
- Refactor analysis to decouple I/O from core logic. https://github.com/rescript-lang/rescript/pull/8426
- Deprecate `Stdlib_Error` and `Stdlib_Exn` modules in favor of `JsError/JsExn`. https://github.com/rescript-lang/rescript/pull/8404

#### :house: Internal

Expand Down
1 change: 1 addition & 0 deletions packages/@rescript/runtime/Stdlib_Error.resi
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ Functions for working with JavaScript exceptions.

See [`Error`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error) on MDN.
*/
@@deprecated("Use `JsError` module")

/** Represents a JavaScript exception. */
@deprecated({
Expand Down
1 change: 1 addition & 0 deletions packages/@rescript/runtime/Stdlib_Exn.resi
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
/***
Provide utilities for dealing with JS exceptions.
*/
@@deprecated("Use `JsExn` module")

/** Represents a JS exception */
@deprecated({
Expand Down
Loading