Implement updating pools of a post from details sidebar

This commit is contained in:
Ruin0x11
2020-05-04 14:44:16 -07:00
parent 8795279a73
commit ffba010ae4
10 changed files with 79 additions and 35 deletions

View File

@ -35,7 +35,7 @@ const app_manifest = {
src: baseUrl() + 'img/android-chrome-192x192.png',
type: 'image/png',
sizes: '192x192'
},
},
{
src: baseUrl() + 'img/android-chrome-512x512.png',
type: 'image/png',
@ -301,8 +301,12 @@ function makeOutputDirs() {
makeOutputDirs();
bundleConfig();
bundleBinaryAssets();
bundleWebAppFiles();
if (!process.argv.includes('--no-binary-assets')) {
bundleBinaryAssets();
}
if (!process.argv.includes('--no-web-app-files')) {
bundleWebAppFiles();
}
if (!process.argv.includes('--no-html')) {
bundleHtml();
}