Open winglian opened 7 years ago
I don't think you're missing anything - i suspect there's a bug right now. I'll give it a look in the morning
@zfoster It looks like it is related to Airbrake from wooljs being included with webpack. It seems airbrake wants to read out the package.json file which shep doesn't ship or need.
Airbrake.PACKAGE = function () {
var json = fs.readFileSync(__dirname + '/../package.json', 'utf8');
return JSON.parse(json);
}();
which is referenced in https://github.com/airbrake/node-airbrake/blob/master/lib/airbrake.js#L53
Hey winglian - sorry for the radio silence. this project has been sidelined for awhile. I'll eventually get around to working through it, but if you're interested in removing airbrake in a PR, I'll merge that right away.
I've tried simply the basic example, and when deployed with shep, I get the error below. Am I missing anything obvious?