Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use native bigint in ReScript-v11.1 #4

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
"author": "Justin Magaram",
"license": "ISC",
"dependencies": {
"@rescript/core": "^1.1.0",
"rescript": "^11.0.1",
"@rescript/core": "^1.3.0",
"rescript": "^11.1.0",
"rescript-schema": "^6.4.0"
},
"files": [
Expand Down
2 changes: 1 addition & 1 deletion src/Extras__Unknown.res
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ external typeof: 'a => typeof = "#typeof"

type object
type function
type bigInt = BigInt.t
type bigInt = bigint
type symbol = Symbol.t

// typeof null == "object". Gotta love that! Do better here.
Expand Down
2 changes: 1 addition & 1 deletion src/Extras__Unknown.resi
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ external typeof: 'a => typeof = "#typeof"

type object
type function
type bigInt = BigInt.t
type bigInt = bigint
type symbol = Symbol.t

/**
Expand Down