Roman
Roman
Certainly can try. One thing I am not sure of, is how to handle this part: https://github.com/open-draft/dotalias/blob/45d6f438cf908d8ab058e1b2fcc969f16db93061/src/index.ts#L10-L12 Since this is in the global scope, this will always throw in the...
Sure, I was considering all these options too, but wasn't sure if breaking change was an option. Not a huge fan of: ```ts import { config } from 'dotalias/config' ```...
Another thought... Might be beneficial to expose programmatic API for each converter independently. The downside is to that approach is that it exposes (right now) internal API, and then makes...
Yeah. Because, for example, for our use case, we have no use for Webpack, so it's just extra CPU cycles to create an instance.
```ts import { toRollup, toJest } from 'alias/config' ``` Yup, that's what we are looking for!
Hey sorry, I don't have the code base anymore, I was just testing it out. But I was follow the DO tutorial to the letter. So you can try their...
Also, I did check the cluster UUID from the URL, and it did match the ID in the UI.
@jaxxstorm ah, makes sense! Thank you for explaining. I'm guessing version is optional to begin with? Or it can be just hardcoded to a specific version. I can see it...
I think a solution can be as follows: Inside the `Account` class, you can look up other `Account` instances. This can be looked up in the passed `scope`, which will...
Not sure about the ~~idempotency~~ stability of the `findAll()` call. Will it return the account instances in the order they were instantiated? If not, is there a way to get...