update git module

This commit is contained in:
2017-09-08 14:58:44 +02:00
parent 55014fbdb2
commit 46c9df32d8
16 changed files with 134 additions and 93 deletions

View File

@@ -1,6 +1,7 @@
import * as plugins from './npmci.plugins'
import * as paths from './npmci.paths'
import { GitRepo } from 'smartstring'
import { ProjectInfo } from 'projectinfo'
import { Dockerfile } from './mod_docker/index'
/**
@@ -10,3 +11,8 @@ export let repo: GitRepo
if (process.env.CI_REPOSITORY_URL) {
repo = new GitRepo(process.env.CI_REPOSITORY_URL)
}
/**
* Info about the project at cwd
*/
export let cwdProjectInfo = new ProjectInfo(paths.cwd)