Skip to content

Commit

Permalink
Dependency: isolinear -> 9014a10 (revery-ui#10)
Browse files Browse the repository at this point in the history
* fix warnings

* Dependency: isolinear -> 9014a10

* 9014a10 -> b17xe17

* Upgrade macOS

Co-authored-by: Bryan Phelps <bryphe@outlook.com>
  • Loading branch information
glennsl and bryphe committed Mar 24, 2020
1 parent 6b2f4e0 commit 0bf4bf4
Show file tree
Hide file tree
Showing 13 changed files with 237 additions and 230 deletions.
2 changes: 1 addition & 1 deletion azure-pipelines.yml
Expand Up @@ -27,7 +27,7 @@ jobs:
- job: MacOS
timeoutInMinutes: 0
pool:
vmImage: 'macOS 10.13'
vmImage: 'macOS-10.14'

variables:
STAGING_DIRECTORY: /Users/runner/STAGING
Expand Down
399 changes: 199 additions & 200 deletions esy.lock/index.json

Large diffs are not rendered by default.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions esy.lock/opam/menhirLib.20200211/opam

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions esy.lock/opam/menhirSdk.20200211/opam

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -33,15 +33,15 @@
"@glennsl/timber": "1.0.0"
},
"resolutions": {
"revery": "revery-ui/revery#4277c43",
"revery": "revery-ui/revery#ced2dde",
"@esy-ocaml/libffi": "esy-ocaml/libffi#c61127d",
"@opam/cmdliner": "1.0.2",
"isolinear": "revery-ui/isolinear#b17ce17",
"esy-cmake": "prometheansacrifice/esy-cmake#2a47392def755"
},
"scripts": {
"format": "esy dune build @fmt --auto-promote",
"run": "esy x App"

},
"devDependencies": {
"ocaml": "~4.8",
Expand Down
4 changes: 2 additions & 2 deletions src/bin/Terminal.re
Expand Up @@ -98,12 +98,12 @@ module Sub = {
type msg = outerMsg;
type params = terminalSubParams;

let subscriptionName = "Terminal";
let name = "Terminal";
type state = {
id: int,
unsubscribe: unit => unit,
};
let getUniqueId = (params: params) => string_of_int(params.id);
let id = (params: params) => string_of_int(params.id);

let init = (~params: params, ~dispatch) => {
let info =
Expand Down
2 changes: 1 addition & 1 deletion src/lib/Theme.re
Expand Up @@ -264,4 +264,4 @@ let default =
| 255 => rgb(238, 238, 238)
// I don't think we'd hit a case greater than 255...
// ...but make it obvious with magenta if we do.
| _idx => rgb(255, 0, 255);
| _ => rgb(255, 0, 255);

0 comments on commit 0bf4bf4

Please sign in to comment.