fix(build): improved asset handling

This commit is contained in:
2018-05-27 15:41:58 +02:00
parent 5fe9134f4a
commit cb2430f7b2
2 changed files with 3 additions and 3 deletions

View File

@ -78,8 +78,8 @@ let publish = async () => {
plugins.beautylog.success(`Nice!!! The build for the publication was successfull!`);
plugins.beautylog.log(`Lets clean up so we don't publish any packages that don't belong to us:`);
// -> clean up before we publish stuff
await bashNoError(`rm -r .npmci_cache`);
await bash(`rm -r node_modules`);
await bashNoError(`rm -r ./.npmci_cache`);
await bash(`rm -r ./node_modules`);
plugins.beautylog.success(`Cleaned up!:`);