-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
573 additions
and
342 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,5 @@ node_modules | |
packages/tests/src/core/**/*_test.res.mjs | ||
lib | ||
coverage | ||
dist | ||
packages/artifacts | ||
.tsimp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "rescript-schema", | ||
"version": "9.2.0", | ||
"version": "9.2.1", | ||
"private": true, | ||
"description": "🧬 The fastest parser in the entire JavaScript ecosystem with a focus on small bundle size and top-notch DX", | ||
"keywords": [ | ||
|
@@ -30,18 +30,19 @@ | |
"license": "MIT", | ||
"author": "Dmitry Zakharov <[email protected]>", | ||
"type": "module", | ||
"main": "./dist/S.js", | ||
"module": "./dist/S.mjs", | ||
"main": "./src/S.js", | ||
"module": "./src/S.mjs", | ||
"types": "./src/S.d.ts", | ||
"files": [ | ||
"dist", | ||
"src/S_Core.res", | ||
"src/S_Core.res.js", | ||
"src/S_Core.res.mjs", | ||
"src/S.res", | ||
"src/S.resi", | ||
"src/S.res.js", | ||
"src/S.res.mjs", | ||
"src/S.js", | ||
"src/S.mjs", | ||
"src/S.d.ts", | ||
"RescriptSchema.gen.d.ts", | ||
"rescript.json" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
3a2be71
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Benchmark
S.schema - make
1354165
ops/sec (±0.56%
)1354467
ops/sec (±1.69%
)1.00
S.schema - make + parse
105485
ops/sec (±1.76%
)107084
ops/sec (±0.76%
)1.02
S.schema - parse
48875554
ops/sec (±3.08%
)59295398
ops/sec (±2.15%
)1.21
S.schema - parse strict
22455329
ops/sec (±1.92%
)23128983
ops/sec (±1.08%
)1.03
S.schema - make + reverse
923614
ops/sec (±0.85%
)485145
ops/sec (±1.01%
)0.53
S.schema - make + reverse convert
187479
ops/sec (±0.77%
)153040
ops/sec (±1.04%
)0.82
S.schema - reverse convert
57157218
ops/sec (±1.87%
)67243399
ops/sec (±2.39%
)1.18
S.schema - reverse convert (compiled)
132819948
ops/sec (±5.35%
)132052574
ops/sec (±4.16%
)0.99
S.schema - assert
50889930
ops/sec (±2.00%
)63079730
ops/sec (±3.00%
)1.24
S.schema - assert (compiled)
72129213
ops/sec (±2.84%
)72857233
ops/sec (±2.59%
)1.01
S.schema - assert strict
21096361
ops/sec (±0.84%
)23133197
ops/sec (±1.07%
)1.10
S.object - make
973424
ops/sec (±0.41%
)995948
ops/sec (±0.34%
)1.02
S.object - make + parse
88830
ops/sec (±0.19%
)91218
ops/sec (±0.17%
)1.03
S.object - parse
36343039
ops/sec (±1.57%
)35466302
ops/sec (±1.60%
)0.98
S.object - make + reverse
133490
ops/sec (±1.51%
)131621
ops/sec (±1.09%
)0.99
S.object - make + reverse convert
86184
ops/sec (±1.02%
)83663
ops/sec (±0.93%
)0.97
S.object - reverse convert
46295779
ops/sec (±1.90%
)47267567
ops/sec (±1.74%
)1.02
S.string - parse
68361099
ops/sec (±2.04%
)67102209
ops/sec (±2.23%
)0.98
S.string - reverse convert
67132161
ops/sec (±3.02%
)69673135
ops/sec (±2.34%
)1.04
This comment was automatically generated by workflow using github-action-benchmark.