Fix CLI build script

pull/1524/head
Laurent Cozic 2019-05-13 23:52:12 +01:00
parent 52e5cec585
commit 047897621a
1 changed files with 3 additions and 0 deletions

View File

@ -69,6 +69,9 @@ async function main() {
await execCommand('bash build.sh');
await execCommand('cp package.json build/');
await execCommand('cp ../README.md build/');
process.chdir(appDir + '/build');
await execCommand('npm publish');
const changelog = await execCommand('node ../Tools/git-changelog ' + changelogFrom);