@Stability(value=Stable) @Internal public static final class BundlingOptions.Jsii$Proxy extends software.amazon.jsii.JsiiObject implements BundlingOptions
BundlingOptionssoftware.amazon.jsii.JsiiObject.InitializationModeBundlingOptions.Builder, BundlingOptions.Jsii$Proxy| Modifier | Constructor and Description |
|---|---|
protected |
Jsii$Proxy(BundlingOptions.Builder builder)
Constructor that initializes the object based on literal property values passed by the
BundlingOptions.Builder. |
protected |
Jsii$Proxy(software.amazon.jsii.JsiiObjectRef objRef)
Constructor that initializes the object based on values retrieved from the JsiiObject.
|
| Modifier and Type | Method and Description |
|---|---|
com.fasterxml.jackson.databind.JsonNode |
$jsii$toJson() |
boolean |
equals(Object o) |
String |
getAssetHash()
Specify a custom hash for this asset.
|
String |
getBanner()
Use this to insert an arbitrary string at the beginning of generated JavaScript files.
|
Map<String,String> |
getBuildArgs()
Build arguments to pass when building the bundling image.
|
Charset |
getCharset()
The charset to use for esbuild's output.
|
ICommandHooks |
getCommandHooks()
Command hooks.
|
Map<String,String> |
getDefine()
Replace global identifiers with constant expressions.
|
DockerImage |
getDockerImage()
A custom bundling Docker image.
|
Map<String,String> |
getEnvironment()
Environment variables defined when bundling runs.
|
Map<String,Object> |
getEsbuildArgs()
Build arguments to pass into esbuild.
|
String |
getEsbuildVersion()
The version of esbuild to use when running in a Docker container.
|
List<String> |
getExternalModules()
A list of modules that should be considered as externals (already available in the runtime).
|
String |
getFooter()
Use this to insert an arbitrary string at the end of generated JavaScript files.
|
Boolean |
getForceDockerBundling()
Force bundling in a Docker container even if local bundling is possible.
|
OutputFormat |
getFormat()
Output format for the generated JavaScript files.
|
List<String> |
getInject()
This option allows you to automatically replace a global variable with an import from another file.
|
Boolean |
getKeepNames()
Whether to preserve the original `name` values even in minified code.
|
Map<String,String> |
getLoader()
Use loaders to change how a given input file is interpreted.
|
LogLevel |
getLogLevel()
Log level for esbuild.
|
List<String> |
getMainFields()
How to determine the entry point for modules.
|
Boolean |
getMetafile()
This option tells esbuild to write out a JSON file relative to output directory with metadata about the build.
|
Boolean |
getMinify()
Whether to minify files when bundling.
|
List<String> |
getNodeModules()
A list of modules that should be installed instead of bundled.
|
Boolean |
getPreCompilation()
Run compilation using tsc before running file through bundling step.
|
Boolean |
getSourceMap()
Whether to include source maps when bundling.
|
SourceMapMode |
getSourceMapMode()
Source map mode to be used when bundling.
|
Boolean |
getSourcesContent()
Whether to include original source code in source maps when bundling.
|
String |
getTarget()
Target environment for the generated JavaScript code.
|
String |
getTsconfig()
Normally the esbuild automatically discovers `tsconfig.json` files and reads their contents during a build.
|
int |
hashCode() |
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSetclone, finalize, getClass, notify, notifyAll, toString, wait, wait, waitbuilderprotected Jsii$Proxy(software.amazon.jsii.JsiiObjectRef objRef)
objRef - Reference to the JSII managed object.protected Jsii$Proxy(BundlingOptions.Builder builder)
BundlingOptions.Builder.public final String getAssetHash()
BundlingOptionsFor consistency, this custom hash will be SHA256 hashed and encoded as hex. The resulting hash will be the asset hash.
NOTE: the hash is used in order to identify a specific revision of the asset, and used for optimizing and caching deployment activities related to this asset such as packaging, uploading to Amazon S3, etc. If you chose to customize the hash, you will need to make sure it is updated every time the asset changes, or otherwise it is possible that some deployments will not be invalidated.
Default: - asset hash is calculated based on the bundled output
getAssetHash in interface BundlingOptionspublic final String getBanner()
BundlingOptionsThis is similar to footer which inserts at the end instead of the beginning.
This is commonly used to insert comments:
Default: - no comments are passed
getBanner in interface BundlingOptionspublic final Map<String,String> getBuildArgs()
BundlingOptionsDefault: - no build arguments are passed
getBuildArgs in interface BundlingOptionspublic final Charset getCharset()
BundlingOptions
By default esbuild's output is ASCII-only. Any non-ASCII characters are escaped
using backslash escape sequences. Using escape sequences makes the generated output
slightly bigger, and also makes it harder to read. If you would like for esbuild to print
the original characters without using escape sequences, use Charset.UTF8.
Default: Charset.ASCII
getCharset in interface BundlingOptionspublic final ICommandHooks getCommandHooks()
BundlingOptionsDefault: - do not run additional commands
getCommandHooks in interface BundlingOptionspublic final Map<String,String> getDefine()
BundlingOptions
For example, { 'process.env.DEBUG': 'true' }.
Another example, { 'process.env.API_KEY': JSON.stringify('xxx-xxxx-xxx') }.
Default: - no replacements are made
getDefine in interface BundlingOptionspublic final DockerImage getDockerImage()
BundlingOptions
This image should have esbuild installed globally. If you plan to use nodeModules
it should also have npm or yarn depending on the lock file you're using.
See https://github.com/aws/aws-cdk/blob/main/packages/%40aws-cdk/aws-lambda-nodejs/lib/Dockerfile for the default image provided by @aws-cdk/aws-lambda-nodejs.
Default: - use the Docker image provided by
getDockerImage in interface BundlingOptionspublic final Map<String,String> getEnvironment()
BundlingOptionsDefault: - no environment variables are defined.
getEnvironment in interface BundlingOptionspublic final Map<String,Object> getEsbuildArgs()
BundlingOptionsFor example, to add the --log-limit flag:
new NodejsFunction(scope, id, {
...
bundling: {
esbuildArgs: {
"--log-limit": "0",
}
}
});
Default: - no additional esbuild arguments are passed
getEsbuildArgs in interface BundlingOptionspublic final String getEsbuildVersion()
BundlingOptionsDefault: - latest v0
getEsbuildVersion in interface BundlingOptionspublic final List<String> getExternalModules()
BundlingOptionsDefault: ['aws-sdk']
getExternalModules in interface BundlingOptionspublic final String getFooter()
BundlingOptionsThis is similar to banner which inserts at the beginning instead of the end.
This is commonly used to insert comments
Default: - no comments are passed
getFooter in interface BundlingOptionspublic final Boolean getForceDockerBundling()
BundlingOptions
This is useful if your function relies on node modules
that should be installed (nodeModules) in a Lambda compatible
environment.
Default: false
getForceDockerBundling in interface BundlingOptionspublic final OutputFormat getFormat()
BundlingOptionsDefault: OutputFormat.CJS
getFormat in interface BundlingOptionspublic final List<String> getInject()
BundlingOptionsDefault: - no code is injected
getInject in interface BundlingOptionspublic final Boolean getKeepNames()
BundlingOptions
In JavaScript the name property on functions and classes defaults to a
nearby identifier in the source code.
However, minification renames symbols to reduce code size and bundling
sometimes need to rename symbols to avoid collisions. That changes value of
the name property for many of these cases. This is usually fine because
the name property is normally only used for debugging. However, some
frameworks rely on the name property for registration and binding purposes.
If this is the case, you can enable this option to preserve the original
name values even in minified code.
Default: false
getKeepNames in interface BundlingOptionspublic final Map<String,String> getLoader()
BundlingOptions
Configuring a loader for a given file type lets you load that file type with
an import statement or a require call.
Default: - use esbuild default loaders
getLoader in interface BundlingOptionspublic final LogLevel getLogLevel()
BundlingOptionsThis is also propagated to the package manager and applies to its specific install command.
Default: LogLevel.WARNING
getLogLevel in interface BundlingOptionspublic final List<String> getMainFields()
BundlingOptionsTry ['module', 'main'] to default to ES module versions.
Default: ['main', 'module']
getMainFields in interface BundlingOptionspublic final Boolean getMetafile()
BundlingOptionsThe metadata in this JSON file follows this schema (specified using TypeScript syntax):
{
outputs: {
[path: string]: {
bytes: number
inputs: {
[path: string]: { bytesInOutput: number }
}
imports: { path: string }[]
exports: string[]
}
}
}
This data can then be analyzed by other tools. For example, bundle buddy can consume esbuild's metadata format and generates a treemap visualization of the modules in your bundle and how much space each one takes up.
Default: false
getMetafile in interface BundlingOptionspublic final Boolean getMinify()
BundlingOptionsDefault: false
getMinify in interface BundlingOptionspublic final List<String> getNodeModules()
BundlingOptionsModules are installed in a Lambda compatible environment only when bundling runs in Docker.
Default: - all modules are bundled
getNodeModules in interface BundlingOptionspublic final Boolean getPreCompilation()
BundlingOptions
This usually is not required unless you are using new experimental features that
are only supported by typescript's tsc compiler.
One example of such feature is emitDecoratorMetadata.
Default: false
getPreCompilation in interface BundlingOptionspublic final Boolean getSourceMap()
BundlingOptionsDefault: false
getSourceMap in interface BundlingOptionspublic final SourceMapMode getSourceMapMode()
BundlingOptionsDefault: SourceMapMode.DEFAULT
getSourceMapMode in interface BundlingOptionspublic final Boolean getSourcesContent()
BundlingOptionsDefault: true
getSourcesContent in interface BundlingOptionspublic final String getTarget()
BundlingOptionsDefault: - the node version of the runtime
getTarget in interface BundlingOptionspublic final String getTsconfig()
BundlingOptions
However, you can also configure a custom tsconfig.json file to use instead.
This is similar to entry path, you need to provide path to your custom tsconfig.json.
This can be useful if you need to do multiple builds of the same code with different settings.
For example, { 'tsconfig': 'path/custom.tsconfig.json' }.
Default: - automatically discovered by `esbuild`
getTsconfig in interface BundlingOptions@Internal public com.fasterxml.jackson.databind.JsonNode $jsii$toJson()
$jsii$toJson in interface software.amazon.jsii.JsiiSerializableCopyright © 2022. All rights reserved.