@colisweb/rescript-toolkit 4.17.0 → 4.17.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@colisweb/rescript-toolkit",
3
- "version": "4.17.0",
3
+ "version": "4.17.1",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "clean": "rescript clean",
@@ -2,7 +2,6 @@ module MakeString = () => {
2
2
  module Id: {
3
3
  @decco
4
4
  type t
5
-
6
5
  module Dict: {
7
6
  type key = t
8
7
  type t<'a>
@@ -28,6 +27,9 @@ module MakeString = () => {
28
27
 
29
28
  @decco
30
29
  type t = Id.t
30
+
31
+ module Dict = Id.Dict
32
+
31
33
  external make: string => t = "%identity"
32
34
  external toString: t => string = "%identity"
33
35
  }