updated setter for environment module to comply with JS standards

This commit is contained in:
2016-07-18 18:39:04 +02:00
parent 6f4138e536
commit 0213afa46e
7 changed files with 15 additions and 40 deletions

View File

@@ -11,6 +11,9 @@ export let buildStage:string = process.env.CI_BUILD_STAGE;
// handling config between commands
export let dockerRegistry:string; // will be set by npmci.prepare
export let setDockerRegistry = (dockerRegistryArg:string) => {
dockerRegistry = dockerRegistryArg;
}
export let dockerFilesBuilt:Dockerfile[] = [];
export let dockerFiles:Dockerfile[] = [];
export let config = {