erratic-gate/deploy.ts
Matei Adriel 06f1a8ccd8 👡 3141519265368979323 😟
2019-05-27 21:16:20 +03:00

48 lines
1.5 KiB
TypeScript

import { publish } from "gh-pages"
import { exec } from "child_process"
import { random } from "random-emoji"
const args = process.argv.splice(2)
const randomEmoji = () => random({ count: 1 })[0].character
const mFlag = ((args.indexOf("--message") + 1) || (args.indexOf("-m") + 1)) - 1
const message = `${randomEmoji()} ${(mFlag) ? args[mFlag + 1] : "automated update"} ${randomEmoji()}`
console.log("Deploying...");
const run = (command: string): Promise<string> => {
return new Promise((res, rej) => {
console.log(`🏃 Running: '${command}'`)
exec(command, (err, stdout, stderr) => {
if (err != null)
rej(err)
else if (typeof (stderr) != "string")
rej(new Error(stderr))
else
res(stdout)
})
})
}
(async () => {
try {
if (!args.includes("--skipBuild") && !args.includes("-sb"))
await run("npm run build")
await run("git add .")
await run(`git commit -m " ${message} "`)
await run("git push origin master")
await new Promise((res, rej) => {
console.log("🏃 Updating github pages")
publish("dist", (err) => {
if (err)
rej(err)
console.log(`😄 Succesfully published to github pages`)
res(true)
})
})
}
catch (err) {
console.log(`😭 Something went wrong: ${err}`)
}
})()