Marnick L'Eau
Marnick L'Eau
Our project uses this, perhaps a good starting point? I don't know dynalite enough myself to kickstart this. ```typescript declare module 'dynalite' { import { Server } from 'http'; interface...
I got the same when I ran with python3. Try running it with python2 as mentioned in #24 ?
Seconding, I just found this app as one of the bottom entries on alternativeto.net (gave it an upvote and review because ❤️ ) and a choco package is the first...
Should we interpret your closing words/label while not closing the ticket as "won't take initiatives, contributions welcome"?
I'm only looking superficially but it looks like chocolatey-community has precedents for automated github-releases-to-choco-package: https://github.com/chocolatey-community/chocolatey-packages/blob/master/automatic/bulk-crap-uninstaller/update.ps1 We could see about getting a module for ow++ contributed there edit: I've got some...
To further support my suspicion about multiple entrypoints, I moved error128 and icon128 out of images.ts (the shared file) and into a file strictly used by 1 entry point (notifications.ts)....
[bug-8278.zip](https://github.com/parcel-bundler/parcel/files/9254838/bug-8278.zip) This zip file ^ contains the most minimal repro possible. Aside from some obvious necessities like a package.json, it's just 3 .ts files and a .json. The shared ts...
@jxnblk I would like to tie in with a question regarding a possible update. Recent versions of sass deprecate `/` as a division operator, making build tools spew warnings. They...
Been the thorn in my side for months... Can't find a better replacement for basscss than tachyons (hucssley doesn't have a stable release yet), don't wanna use clunkier build tools...
The best we now have is this ```ts class ABPredicate extends Predicate { constructor() { super('string'); this.addValidator({ validator: isAB, message: (value, label) => 'TODO' }); } } ``` and it...