cogear
Version:
Cogear.JS – modern static websites generator (Node.JS/Webpack)
16 lines • 369 B
JavaScript
const path = require('path');
const jsonfile = require('jsonfile');
module.exports = {
apply(){
cogear.requirePackageJSON = (pkgPath)=>{
pkgPath = pkgPath || path.join(cogear.baseDir,'package.json');
let pkg;
try {
pkg = jsonfile.readFileSync(pkgPath);
} catch (e){
console.error(e);
}
return pkg;
};
}
};