Cody Casterline
Cody Casterline
That seems to have done the trick. Nice.
Aha, I see. I can sortof work around this issue with a config file that looks like this: ~~~ # ~/.jenkins-cli [DEFAULT] host=https://jenkins.example.com/ username=foo password=bar [my_project] host=https://jenkins.example.com/job/MyOrgGitHubRepos/job/my_project/ ~~~ Then I...
The issue seems to be trying to be trying to compensate for adding items above the view port while scrolling is happening. The fix/compromise is to only load items once...
The safari thing is annoying, going to fix it separately in #88.
I'd love to see this too! (I see it got tagged for 0.6.1. 🤞) I realize this is out of scope for the original request, but wanted to share some...
Skimming info about domino, I see: > In contrast to the original dom.js project, domino was not designed to run untrusted code. Hmm, I definitely want to pass untrusted HTML...
Whew. That works with some *very* bleeding edge code. 😆 ```typescript import tds from "https://cdn.skypack.dev/[email protected]" // JSDOM imports .json files, which doesn't seem to work in deno/skypack: // import *...
I'm running into this as well. This being broken is sort of a big deal. If you want to use a library that [forces you to use import maps][1], you...
@andykais A standard way of managing your dependencies is in a `deps.ts` file. See: . That will let you `deno install` without needing to specify an import map.
Came here to request the same thing. It's great that `deno test` will tell you about unresolved promises at test time. But 1) That only catches issues if you have...