You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm running ignite on OSX Catalina. I've run into an issue where it seems that the file path is wrong on a line of code located in: ignite/dist/ignite.js:132:54
function getAuthor(pkgJson) {
const rootJson = pkgJson || JSON.parse(_fs.default.readFileSync(`${(0, _rootPath.default)()}/package.json`));
let author = rootJson ? rootJson.author : {};
if (typeof author === 'string') {
// Stolen from https://stackoverflow.com/a/14011481
const regexParseMatch = author.match(/(?:"?([^"]*)"?\s)?(?:<?(.+@[^>]+)>?)/);
if (regexParseMatch) {
author = {
name: regexParseMatch[1],
email: regexParseMatch[2]
};
}
}
return author;
}
Any thoughts or suggestions?
The text was updated successfully, but these errors were encountered:
I'm running ignite on OSX Catalina. I've run into an issue where it seems that the file path is wrong on a line of code located in: ignite/dist/ignite.js:132:54
Any thoughts or suggestions?
The text was updated successfully, but these errors were encountered: