Browse Source

Merge branch 'dev' of https://github.com/abpframework/abp into dev

pull/1650/head
Halil İbrahim Kalkan 7 years ago
parent
commit
3709a82458
  1. 6
      npm/ng-packs/scripts/build.js
  2. 6
      npm/ng-packs/scripts/sync.js

6
npm/ng-packs/scripts/build.js

@ -39,11 +39,5 @@ import fse from 'fs-extra';
await execa('git', ['add', '../dist/*', '../package.json'], { stdout: 'inherit' });
await execa('git', ['commit', '-m', 'Build ng packages'], { stdout: 'inherit' });
try {
await execa('git', ['push', 'origin']);
} catch (error) {
console.error('An error occured while pushing the git files:\n' + error.stderr);
}
process.exit(0);
})();

6
npm/ng-packs/scripts/sync.js

@ -25,11 +25,5 @@ import execa from 'execa';
await execa('git', ['add', '../packages/*', '../package.json'], { stdout: 'inherit' });
await execa('git', ['commit', '-m', 'Update source packages versions'], { stdout: 'inherit' });
try {
await execa('git', ['push', 'origin']);
} catch (error) {
console.error('An error occured while pushing the git files:\n' + error.stderr);
}
process.exit(0);
})();

Loading…
Cancel
Save