mirror of
https://github.com/dilllxd/gitfolio.git
synced 2024-08-14 22:28:09 +00:00
38 lines
No EOL
736 B
JavaScript
38 lines
No EOL
736 B
JavaScript
const
|
|
{
|
|
getConfig
|
|
} = require("./utils");
|
|
const
|
|
{
|
|
updateHTML
|
|
} = require("./populate");
|
|
|
|
async function updateCommand()
|
|
{
|
|
const data = await getConfig();
|
|
var username = data[0].username;
|
|
if (username == null)
|
|
{
|
|
console.log(
|
|
"username not found in config.json, please run build command before using update"
|
|
);
|
|
return;
|
|
}
|
|
const opts = {
|
|
sort: data[0].sort,
|
|
order: data[0].order,
|
|
includeFork: data[0].includeFork,
|
|
types: data[0].types,
|
|
twitter: data[0].twitter,
|
|
linkedin: data[0].linkedin,
|
|
medium: data[0].medium,
|
|
dribbble: data[0].dribbble,
|
|
telegram: data[0].telegram,
|
|
email: data[0].email
|
|
};
|
|
updateHTML(username, opts);
|
|
}
|
|
|
|
module.exports = {
|
|
updateCommand
|
|
}; |