@collaborne/custom-cloudformation-resources
Advanced tools
Comparing version 0.0.2 to 0.1.0
@@ -0,3 +1,6 @@ | ||
// Export all general utilities for building custom resources | ||
export { SUCCESS, FAILED, send, } from './cfn-response'; | ||
export { CustomResource } from './custom-resource'; | ||
// Export actual resources | ||
export { ACMCloudfrontCertificate } from './acm-certificate'; | ||
//# sourceMappingURL=index.js.map |
{ | ||
"name": "@collaborne/custom-cloudformation-resources", | ||
"version": "0.0.2", | ||
"version": "0.1.0", | ||
"description": "Custom CloudFormation resources", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
@@ -0,5 +1,15 @@ | ||
// Export all general utilities for building custom resources | ||
export { | ||
CustomResourceRequest, | ||
ResponseStatus, | ||
SUCCESS, | ||
FAILED, | ||
send, | ||
} from './cfn-response'; | ||
// Export required interfaces | ||
export { Logger } from './logger'; | ||
export { CustomResource } from './custom-resource'; | ||
export { CustomResourceRequest, ResponseStatus } from './cfn-response'; | ||
// Export actual resources | ||
export { ACMCloudfrontCertificate } from './acm-certificate'; |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
127403
1268