cdk-generate-synthetic-examples
v0.2.37
Published
Generate synthetic examples for CDK libraries
Readme
CDK Generate Synthetic Examples
This tool will find all classes in the JSII assembly that don't yet have any example code associated with them, and will generate a synthetic example that shows how to instantiate the type. This is a method of last resort: we'd obviously prefer hand-written examples, but this will make sure all classes get something usable (which otherwise would not have any examples at all). It is designed to run during the build of a CDK Construct Library.
Install
This tool is published as an npm module, install locally:
npm install cdk-generate-synthetic-examplesUsage
Suppose you are in the base directory of your CDK construct, aws-construct.
After a successful build, you have a .jsii file.
cdk-generate-synthetic-examples will generate examples for types without
doc examples and directly modify the assembly.
As part of the command, a _generated.ts-fixture file will be added to your
project's rosetta directory. This fixture contains the necessary imports
that will ensure compilation when rosetta:extract is run.
npx cdk-generate-synthetic-examples .jsiiWith Rosetta:Extract
A common workflow is to run cdk-generate-synthetic-examples sandwiched
between calls to rosetta:extract.
The first rosetta:extract will extract any possible hand-written examples
into your assembly. The second rosetta:extract will then compile and
translate the new synthetic examples.
The --extract flag is simply a helper that does the second rosetta:extract
call for you.
npx cdk-generate-synthetic-examples .jsii --extractYou can send common rosetta:extract options through
cdk-generate-synthetic-examples as well.
npx cdk-generate-synthetic-examples \
path/to/cdk/directory/.jsii \
--extract \
--extract-cache='rosetta-cache.tabl.json' \
--extract-directory='path/to/cdk/directory'Security
See CONTRIBUTING for more information.
License
This project is licensed under the Apache-2.0 License.
