leesei

Results 31 comments of leesei

I have this use case ``` js [ 'a.js', 'b.js' ].forEach(js => { injectJS(fs.readFileSync(js)); }); ```

I added an `epilog` field to display available subcommands. https://github.com/leesei/commander/commit/ddda933646870c208e2fb18615dc786d5bbade97 on branch [subcmd](https://github.com/leesei/commander/tree/subcmd) Then I do the subcommands parsing with my own code. I can submit PR if you find...

This issue was moved to hexojs/hexo-deployer-git#38

I second. There should be a single source of truth. We could add info in the README suggesting - new contents SHOULD be added to en version - language maintainers...

1.0.0 AppImage crashed on my Arch system, could be a change in system's gtk, see [here](https://forum.manager.io/t/appimage-does-not-work-crashes/37204/11) This encourages me to build from source and work on this idea. First of...

Nevermind, for anyone who would like to use this feature. Just build the AppImage from my fork.

Related #321. Is there a way to control the concurrency of `Promise.all()` in `imagemin()`?

Try ```sh imagemin --plugin.webp.quality=75 --plugin.webp.preset=photo --plugin.webp.resize.width=1024 --plugin.webp.resize.height=0 file.jpg > file.webp ```

Have you read the source code of `imagemin-cli`? `--plugin` option like `--plugin.webp.quality=95 --plugin.webp.preset=icon` will be parsed as an object: ```js { webp: { quality: 95, preset: "icon" } } ```...

Whether `/tmp` is memory supported `tmpfs` or actual file system depends on the OS/distro. On ArchLinux `/tmp` has long been `tmpfs`.