1
0
Fork 0
mirror of https://github.com/veggiemonk/awesome-docker.git synced 2025-04-19 07:28:05 +02:00
This commit is contained in:
Julien Bisconti 2018-04-22 12:34:38 +02:00
parent 8f628c154a
commit 6656c3dc3b
2 changed files with 21 additions and 1 deletions

View file

@ -61,7 +61,11 @@ const bundle = (dest = destination) => {
new Parcel(dest, {
name: 'build',
publicURL: '/',
}).bundle();
})
.bundle()
.then(() => {
fs.copyFileSync('website/sitemap.xml', 'dist/sitemap.xml');
});
};
const main = () => {