Brian Schiller
Brian Schiller
With this change: - migrations will still be javascript files - TS compiler will type-check it (including your editor, if you have that set up) - you can't use _type...
We can get acceptable typescript support with only a couple of changes: 1. Add `// @ts-check` to the top of the migration template 2. Add the following comment block above...
Ah, I see this is already implemented in #117
I'd be happy to write a PR for this 😀 However, I couldn't find where the code is to compile and deploy the static site. I checked the .travis.yml, package.json,...
Hi @JosephusPaye, I was wondering if there was a better way to handle this. I'll read up on those new properties and update my PR. Thanks, -Brian
I have a fork (described in #10) that includes an `imageDir` plugin option, but it's relative to each file's location. Would that work for you, or would you expect such...
I'm having the same issue. I did a `set -X` first, and didn't get any useful output.
Actually, I just added `django` to my plugins list in my `oh_my_zshrc`. That seems to have totally fixed it.
I wanted to share another case that my coworker, @znck, brought to my attention. It's easiest to understand with an example ```ts declare function getDisposable(): Disposable & { property: string...
I also wanted to use the migrator package with a newer version of slonik. I made some changes and published `@bgschiller/slonik-migrator` to npm. The code is up at [bgschiller/slonik-migrator](https://github.com/bgschiller/slonik-migrator). @mmkal...