@de-otio/maildummy-cdk
v1.0.1
Published
AWS CDK construct for SES email testing infrastructure (maildummy)
Maintainers
Readme
@deotio/maildummy-cdk
AWS CDK construct for SES email testing infrastructure. See the main README for an overview and the CDK construct reference for full usage documentation.
Building
cd cdk
npm install
npm run buildThis compiles TypeScript from src/ into lib/ (JS + declaration files).
Use npm run watch to recompile on changes during development.
Publishing to npm
npm run build
npm publish --access publicThe prepublishOnly script runs the build automatically, so npm publish alone is sufficient.
The files field in package.json ensures only lib/**/*.js and lib/**/*.d.ts are included in the published package.
Using from git (without publishing)
Consumers can install directly from the repository:
npm install github:your-org/maildummy#mainSince lib/ is not committed, consumers installing from git need to build after install. Add a prepare script if you want this to happen automatically:
"scripts": {
"prepare": "npm run build"
}