fix(core): update

This commit is contained in:
2019-07-17 17:04:10 +02:00
parent 59d8338f6e
commit 9918d81f59
5 changed files with 554 additions and 31 deletions

View File

@ -41,6 +41,9 @@ export let mirror = async () => {
if (githubToken) {
logger.log('info', 'found github token.');
logger.log('info', 'attempting the mirror the repository to GitHub');
plugins.smartgit.GitRepo
// add the mirror
await bash(
`git remote add mirror https://${githubToken}@github.com/${githubUser}/${githubRepo}.git`

View File

@ -1 +1,7 @@
export * from '../npmci.plugins';
import * as smartgit from '@pushrocks/smartgit';
export {
smartgit
};