UNPKG

1.13 kBPlain TextView Raw
1import * as awsTags from './aws/aws-tags';
2import * as cloudFormationCalls from './aws/cloudformation-calls';
3import * as ec2Calls from './aws/ec2-calls';
4import * as s3Calls from './aws/s3-calls';
5import * as bindPhaseModule from './common/bind-phase';
6import * as checkPhaseModule from './common/check-phase';
7import * as deletePhasesModule from './common/delete-phases';
8import * as deployPhaseModule from './common/deploy-phase';
9import * as preDeployPhaseModule from './common/pre-deploy-phase';
10import * as taggingModule from './common/tagging';
11import * as handlebarsUtils from './util/handlebars-utils';
12import * as utilModule from './util/util';
13
14export const checkPhase = checkPhaseModule;
15export const bindPhase = bindPhaseModule;
16export const deletePhases = deletePhasesModule;
17export const deployPhase = deployPhaseModule;
18export const preDeployPhase = preDeployPhaseModule;
19export const tagging = taggingModule;
20
21export const awsCalls = {
22 cloudFormation: cloudFormationCalls,
23 ec2: ec2Calls,
24 s3: s3Calls,
25 tags: awsTags
26};
27
28export const handlebars = handlebarsUtils;
29export const util = utilModule;