24 lines
542 B
TypeScript
24 lines
542 B
TypeScript
import * as plugins from './npmci.plugins'
|
|
import { bash } from './npmci.bash'
|
|
import * as env from './npmci.env'
|
|
import * as buildDocker from './npmci.build.docker'
|
|
|
|
/**
|
|
* defines possible build services
|
|
*/
|
|
export type TBuildService = 'docker'
|
|
|
|
/**
|
|
* builds for a specific service
|
|
*/
|
|
export let build = async (commandArg): Promise<void> => {
|
|
switch (commandArg) {
|
|
case 'docker':
|
|
await buildDocker.build()
|
|
break
|
|
default:
|
|
plugins.beautylog.log('build target ' + commandArg + ' not recognised!')
|
|
};
|
|
return
|
|
}
|