From 0ee107a343f890c8143f7de10bd6b76b2cd2d13a Mon Sep 17 00:00:00 2001 From: Christoph Knittel Date: Sat, 29 Jun 2024 07:48:11 +0200 Subject: [PATCH 1/2] Remove aliases for runtime modules --- src/RescriptCore.mjs | 9 --------- src/RescriptCore.res | 3 --- 2 files changed, 12 deletions(-) diff --git a/src/RescriptCore.mjs b/src/RescriptCore.mjs index aad5ebf3..db8ded44 100644 --- a/src/RescriptCore.mjs +++ b/src/RescriptCore.mjs @@ -82,12 +82,6 @@ var $$BigUint64Array; var $$Intl; -var MapperRt; - -var Internal; - -var Re; - var Exn; var $$Option; @@ -139,9 +133,6 @@ export { $$BigInt64Array , $$BigUint64Array , $$Intl , - MapperRt , - Internal , - Re , Exn , $$Option , List , diff --git a/src/RescriptCore.res b/src/RescriptCore.res index 68fc344d..2b52eb5f 100644 --- a/src/RescriptCore.res +++ b/src/RescriptCore.res @@ -94,9 +94,6 @@ async function main() { */ external import: 'a => promise<'a> = "#import" -module MapperRt = Js.MapperRt -module Internal = Js.Internal -module Re = Core__RegExp // needed for the %re sugar module Exn = Js.Exn module Option = Core__Option module List = Core__List From 4573d71f30a5fbd6165c0e04cfcc59a0096725ee Mon Sep 17 00:00:00 2001 From: Christoph Knittel Date: Sat, 29 Jun 2024 07:51:50 +0200 Subject: [PATCH 2/2] CHANGELOG --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index a681b318..9b4deda7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ ## Next version +## 1.5.2 + +- Remove aliases for runtime modules (`MapperRt`, `Internal`) and `Re`. https://github.com/rescript-association/rescript-core/pull/237 + ## 1.5.1 - Remove leftover top-level t<'a>. https://github.com/rescript-association/rescript-core/pull/236