Kode / khamake

Kha's build tool.
http://kha.tech
15 stars 43 forks source link

Khamake silently ignores khafile.js errors #266

Closed RblSb closed 2 months ago

RblSb commented 1 year ago

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 commented 2 months ago

Hmm, seems fixed, but when...