Use babel-minify for minification

This commit is contained in:
lowlighter
2020-11-06 21:29:43 +01:00
parent e05442017a
commit df7594f4ea
6 changed files with 641 additions and 10 deletions

View File

@@ -82,6 +82,7 @@
music:{enabled:bool(core.getInput("plugin_music"))},
posts:{enabled:bool(core.getInput("plugin_posts"))},
isocalendar:{enabled:bool(core.getInput("plugin_isocalendar"))},
gists:{enabled:bool(core.getInput("plugin_gists"))},
}
let q = Object.fromEntries(Object.entries(plugins).filter(([key, plugin]) => plugin.enabled).map(([key]) => [key, true]))
console.log(`Plugins enabled | ${Object.entries(plugins).filter(([key, plugin]) => plugin.enabled).map(([key]) => key).join(", ")}`)