-
Notifications
You must be signed in to change notification settings - Fork 9
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
[WIP] Remote Image #67
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,13 +18,22 @@ | |
"devDependencies": { | ||
"@opam/merlin": "^3.2.2", | ||
"@opam/merlin-lsp": "*", | ||
"ocaml": "~4.7.1000" | ||
"ocaml": "~4.7.1000", | ||
"@opam/httpkit": "*", | ||
"@opam/httpkit-lwt": "*", | ||
"@opam/logs": "*", | ||
"@opam/fmt": "*", | ||
"@opam/yojson": "*" | ||
czystyl marked this conversation as resolved.
Show resolved
Hide resolved
|
||
}, | ||
"resolutions": { | ||
"@brisk/core": "link-dev:./core", | ||
"@brisk/macos": "link-dev:./renderer-macos", | ||
"@opam/dune": "ocaml/dune:dune.opam#01b46a3", | ||
"@opam/merlin-lsp": "ocaml/merlin:merlin-lsp.opam#3e34bb5", | ||
"brisk-reconciler": "briskml/brisk-reconciler#fa605f1" | ||
"brisk-reconciler": "briskml/brisk-reconciler#fa605f1", | ||
"@opam/httpkit": "ostera/httpkit:httpkit.opam#322ca26", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Whatever you add to the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm opposed to this rule. Any rule you cannot automate is just mental overhead! EDIT: And it's all about how you can justify that mental overhead. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'd prefer to sort them by significance but that's what would be a mental overhead, so alphabetical seems like a good compromise. (most package managers do it automatically, maybe one day we'll get that for esy) It's not like we'll add dependencies on every single PR. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm still opposed to it - I'll never remember/care about such artificial rule. EDIT: I might even switch order on purpose 😂 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Aren't there enough artificial rules in this world 😄 ? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ok, let's postpone the manual enforcing. We'll come up with a way to automate it. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Don't fight guys :D Ok, what's about to keep the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. That’s what I’d usually do, but then there are scoped npm packages that mess up this logic. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Also, |
||
"@opam/httpkit-lwt": "ostera/httpkit:httpkit-lwt.opam#322ca26", | ||
"@opam/httpaf": "anmonteiro/httpaf:httpaf.opam#57e9dd2", | ||
"@opam/httpaf-lwt": "anmonteiro/httpaf:httpaf-lwt.opam#57e9dd2" | ||
} | ||
} |
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.
This is a wrong place to add dependencies.
brisk-macos
will fail to find those dependenciesdevDependencies
- meaning they are either for tooling like merlin, or some local deps you'd use for tests, they will not be available in runtimeWe'll have a detailed design doc and contributing guide, but for now:
brisk-macos