khamake icon indicating copy to clipboard operation
khamake copied to clipboard

Khamake silently ignores khafile.js errors

Open RblSb opened this issue 2 years ago • 0 comments

For example, if you add this before resolve(project);:

const fs = require("fs");
const res = fs.readFileSync(__dirname + "/doesnotexist").toString();
console.log(res);

build folder will not be generated, i guess because resolve(project); will not be executed after error throw. Will be nice to get error in vscode output

RblSb avatar Jul 27 '23 08:07 RblSb