Juho Vepsäläinen

Results 352 comments of Juho Vepsäläinen

@umbopepato Thanks for the heads up. I opened a feature request at https://github.com/denoland/deno/issues/12197 . I guess another option would be to leverage https://deno.land/x/[email protected] . I wonder if I could do...

It looks like there's a zip at https://github.com/twardoch/fonttools-opentype-feature-freezer/blob/9798eb8da8ec73bbfeb93f5850528c468e6bd255/download/OTFeatureFreezer.zip . That's before it was removed from the repository.

A small update on this. Recently I had to figure out how to mesh Deno and Node code in my codebase. Here's what I did: 1. I packaged the Deno...

Cool. You could perhaps PR that as a doc improvement.

There's definitely something funky going on with those images. Would you have to try the cli while updating [to-markdown](https://www.npmjs.com/package/to-markdown) to its newest version? If that works, I'll do a little...

Thanks for letting me know. It might choke somewhere in `to-markdown`. It is known to have issues with some custom markup. Would it be possible for you to run the...

Which version of Node are you running? Note that I haven't updated this package in years.

As far as I can see, the only problematic part might be dealing with `entry` as you might expect multiple different formats there. But that can be treated as a...

Has this been fixed? I have configuration like this: **webpack.config.js** ``` javascript const path = require('path'); module.exports = { entry: { style: path.join(__dirname, 'app/main.css') } }; ``` **package.json** ``` json...