🌉 fixed big bundle bug 🏂

This commit is contained in:
Matei Adriel 2019-06-02 20:06:25 +00:00
parent 9e4ad56295
commit 4848e6c86c
2 changed files with 9 additions and 5 deletions

View file

@ -1,6 +1,8 @@
import { publish } from "gh-pages"
import { exec } from "child_process"
import { random } from "random-emoji"
const { publish } = require("gh-pages")
const { exec } = require("child_process")
const { random } = require("random-emoji")
// const { publish } = require("gh-pages")
const args = process.argv.splice(2)
const randomEmoji = () => random({ count: 1 })[0].character
@ -13,6 +15,7 @@ console.log("Deploying...");
const run = (command: string): Promise<string> => {
return new Promise((res, rej) => {
console.log(`🏃 Running: '${command}'`)
//@ts-ignore
exec(command, (err, stdout, stderr) => {
if (err != null)
rej(err)
@ -34,6 +37,7 @@ const run = (command: string): Promise<string> => {
await run("git push origin master")
await new Promise((res, rej) => {
console.log("🏃 Updating github pages")
//@ts-ignore
publish("dist", (err) => {
if (err)
rej(err)

View file

@ -6,8 +6,8 @@
"types/*"
]
},
"module": "commonjs",
"target": "es5",
"module": "esnext",
"target": "esnext",
"removeComments": true,
"sourceMap": true,
"lib": [