-
-
Notifications
You must be signed in to change notification settings - Fork 196
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Performance: 'Minimal' layout mode (#369)
* Start adding benchmarking tooling * Add reperf to devdeps * Add bench lib * Add LayoutMode style property * Benchmark minimal layout mode * Factor out dimensions to separate module, abstract the css measurements into Dimensions.t * Refactor GameOfLife to be pixel-based * Run a minimal layout strategy * Tweaks * Formatting * Update lockfiles * Add benchmark to build / hygiene checks * Remove commented out code
- Loading branch information
Showing
86 changed files
with
4,863 additions
and
34 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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Run benchmarks | ||
|
||
steps: | ||
- script: esy @bench install | ||
displayName: 'esy @bench install' | ||
- script: esy @bench build | ||
displayName: 'esy @bench build' | ||
- script: esy @bench x ReveryBench | ||
displayName: 'esy @bench x ReveryBench' |
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
opam-version: "1.2" | ||
version: "dev" | ||
maintainer: "bryphe@outlook.com" | ||
author: ["Bryan Phelps"] | ||
build: [ | ||
|
||
] |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
|
||
# Set eol to LF so files aren't converted to CRLF-eol on Windows. | ||
* text eol=lf |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
|
||
# Reset any possible .gitignore, we want all esy.lock to be un-ignored. | ||
!* |
Oops, something went wrong.