Skip to content

Commit c5599f3

Browse files
authored
Remove aliases for runtime modules (#237)
* Remove aliases for runtime modules * CHANGELOG
1 parent 69dbeef commit c5599f3

File tree

3 files changed

+4
-12
lines changed

3 files changed

+4
-12
lines changed

Diff for: CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## Next version
44

5+
## 1.5.2
6+
7+
- Remove aliases for runtime modules (`MapperRt`, `Internal`) and `Re`. https://github.com/rescript-association/rescript-core/pull/237
8+
59
## 1.5.1
610

711
- Remove leftover top-level t<'a>. https://github.com/rescript-association/rescript-core/pull/236

Diff for: src/RescriptCore.mjs

-9
Original file line numberDiff line numberDiff line change
@@ -82,12 +82,6 @@ var $$BigUint64Array;
8282

8383
var $$Intl;
8484

85-
var MapperRt;
86-
87-
var Internal;
88-
89-
var Re;
90-
9185
var Exn;
9286

9387
var $$Option;
@@ -139,9 +133,6 @@ export {
139133
$$BigInt64Array ,
140134
$$BigUint64Array ,
141135
$$Intl ,
142-
MapperRt ,
143-
Internal ,
144-
Re ,
145136
Exn ,
146137
$$Option ,
147138
List ,

Diff for: src/RescriptCore.res

-3
Original file line numberDiff line numberDiff line change
@@ -94,9 +94,6 @@ async function main() {
9494
*/
9595
external import: 'a => promise<'a> = "#import"
9696

97-
module MapperRt = Js.MapperRt
98-
module Internal = Js.Internal
99-
module Re = Core__RegExp // needed for the %re sugar
10097
module Exn = Js.Exn
10198
module Option = Core__Option
10299
module List = Core__List

0 commit comments

Comments
 (0)