Vito Macchia
Vito Macchia
The fix is trivial... just stringify this line https://github.com/mthenw/frontail/blob/master/lib/daemonize.js#L68 e.g. from ```js fs.writeFileSync(params.pidPath, proc.pid); ``` to ```js fs.writeFileSync(params.pidPath, String(proc.pid)); ```
While somebody takes care of this fix, I have found a workaround for daemonizing it in a Linux environment `damonize_frontail.sh` ```bash $FRONTAIL_LOGFILE=./frontail-log.log FRONTAIL_PID_FILE=./frontail.pid $LOGFILE=$1 # start frontail storing pid -...
Thanks, this is good news. I just started playing with spectacle and I'm trying with the generic plugin. The PDF support is decent but sometimes fails/behaves strangely, especially with spectacle-code-slide....
I just run into a similar error! Yesterday I was using an older version of decktape, that didn't show such errors but also did not exactly work as expected for...
Ok, for sure you'll need local storage to be active since Spectacle deck uses it: ```bash ./phantomjs --local-storage-path=. --local-storage-quota=5000 decktape.js generic --keycode=Right --size=1920x1080 --max-slides=20 http://localhost:3000/ ~/Documents/ ``` Also `--max-slides` seems...
I see, thank you. By looking at your code, it seems an issue of graphql-tools, not yours. Scalars seem to get ignored. But good news is, you are not tied...
Hi @awarberg I tried your script but I get this error. I tried with yarn as well, no luck... stupid Windows! 💢 ``` .\update_node.ps1 npm ERR! path C:\Program Files\nodejs\node_modules\npm\node_modules\worker-farm\node_modules\.bin\errno npm...
Thank you, I had also found this kind of workaround! :)
By the way a found a solution by myself but it's more an hack that puts the issue in evidence: ``` javascript import L from "leaflet/dist/leaflet-src.js"; var PruneCluster = require("imports?L=leaflet/dist/leaflet-src.js!exports?PruneCluster!prunecluster/dist/PruneCluster.js");...