Daniel Ruf

Results 910 comments of Daniel Ruf

Not really as it is incompatible with newer NodeJS releases.

> The result of Imagemin windows app is 33kb. but when I use js code to use imagemin directly output for same picture is 57kb. These are probably different versions...

The new electron-packager should solve this. There is a fork with an electron-packager npm script but it is not a working rewrite as it seems and there is https://github.com/imagemin/imagemin-app/tree/next. Or...

undefined !== null Simply change it to `if (autoPrivate && doc.name && doc.name.charAt(0) === '_') {`

See https://github.com/esdoc/esdoc/issues/556

It doesn't exist anymore since I stopped maintaing it due to not enough support from the community.

Duplicate of https://github.com/esdoc/esdoc-plugins/issues/28 Simply change it to `if (autoPrivate && doc.name && doc.name.charAt(0) === '_') {`

`focusable="false" tabindex="0"` is recommended for backwards compatibility.

I'm not an org owner or member either.

This comes from https://github.com/pattern-lab/patternlab-php/blob/b5769cc6673a91ce029d146e4aa169594af830ce/core/src/PatternLab/Installer.php#L53. Also related to Installer::postPackageInstall,Installer::postPackageUpdate and Installer::prePackageUninstall where the code is used. The code `$event->getComposer()->getInstallationManager()->getInstallPath($package)` adds the full (absolute) path (on Windows) (in specific cases, it seems...