I tried to fork a simple pino transport "pino-loki" on github and wan't to add it as my dependency. package.json seems to be fine and the library is pulled from github.
"pino-loki": "mygithub/pino-loki"
But for some reason pino can't initialise this transporter.
{
target: 'pino-loki',
level:"info",
options: {
host: 'http://localhost:3100',
batching: true,
interval: 5,
}
},
Error: unable to determine transport target for "pino-loki"
I can see it in my node_modules, are there any additional steps I'm missing?