Skip to content

Commit

Permalink
Merge pull request #41 from appodeal/develop
Browse files Browse the repository at this point in the history
Release 0.1.9
  • Loading branch information
NaLLiFFuNT authored Apr 19, 2019
2 parents 9a0f4de + 6943b64 commit 55f1345
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"repository": "https://github.com/appodeal/admob-sync-app",
"description": "Appodeal AdMob Sync application",
"private": true,
"version": "0.1.8",
"version": "0.1.9",
"scripts": {
"start": "webpack --watch --progress --config=webpack/development.ts",
"test": "jest",
Expand Down
7 changes: 5 additions & 2 deletions tools/dist.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ const targets = (targets => {
};
return info;
}, {}),
distFolder = path.resolve(__dirname, buildConfig.directories.output),
distFolder = path.resolve(__dirname, '..', buildConfig.directories.output),
distFiles = new Set(Object.values(distInfo).map(info => info.fileName)),
allDistFiles = (await fs.readdir(distFolder)).map(fileName => path.resolve(distFolder, fileName));
await Promise.all(
Expand Down Expand Up @@ -130,7 +130,10 @@ const targets = (targets => {
}


})();
})().catch(e => {
console.error(e);
process.exit(1)
});

function objectFromEntries (entries) {
return entries.reduce((obj, [key, value]) => {
Expand Down

0 comments on commit 55f1345

Please sign in to comment.