1
0
Fork 0
mirror of https://github.com/dilllxd/gitfolio.git synced 2024-08-14 22:28:09 +00:00
gitfolio/update.js
2019-08-12 09:40:00 +05:30

39 lines
855 B
JavaScript

const { getConfig } = require("./utils");
const { updateHTML } = require("./populate");
async function updateCommand() {
const data = await getConfig();
var username = data[0].username;
var sort = data[0].sort;
var order = data[0].order;
var includeFork = data[0].includeFork;
var twitter = data[0].twitter;
var linkedin = data[0].linkedin;
var medium = data[0].medium;
var dribbble = data[0].dribbble;
if (
username == null ||
sort == null ||
order == null ||
includeFork == null
) {
console.log(
"username not found in config.json, please run build command before using update"
);
return;
}
updateHTML(
username,
sort,
order,
includeFork,
twitter,
linkedin,
medium,
dribbble
);
}
module.exports = {
updateCommand
};