I was attempting to use gasket to start the server and discovered that it doesn't print stack traces. Here's a simplified case where you can see stderr prints are not printed. You can reproduce by using console.error as well.
package.json
{
"name": "foo",
"gasket": [
"echo 'I came through stderr' >/dev/stderr",
"echo 'I came through stdout"
]
}
I was attempting to use
gasket
to start the server and discovered that it doesn't print stack traces. Here's a simplified case where you can see stderr prints are not printed. You can reproduce by usingconsole.error
as well.package.json