UNPKG

@jefiozie/ngx-aws-deploy

Version:

Deploy an Angular app to Amazon S3 directly from the Angular CLI

56 lines (55 loc) 2.14 kB
{ "$schema": "http://json-schema.org/schema", "$id": "AwsDeploy", "title": "AWS Deploy", "description": "Deployment of Angular CLI applications to AWS", "properties": { "configuration": { "type": "string", "description": "A named build target, as specified in the `configurations` section of angular.json. Each named target is accompanied by a configuration of option defaults for that target. Same as `ng build --configuration=XXX`.", "alias": "c", "x-deprecated": "Use \"--buildTarget\" instead." }, "noBuild": { "type": "boolean", "default": false, "description": "Skip build process during deployment." }, "baseHref": { "type": "string", "description": "This is an example how to override the workspace set of options. --- Base url for the application being built. Same as `ng build --base-href=/XXX/`." }, "accessKeyId": { "type": "string", "description": "The accessKeyId from AWS.", "x-deprecated": "Use \"the environment variables\" instead." }, "secretAccessKey": { "type": "string", "description": "The secret access key from AWS.", "x-deprecated": "Use \"the environment variables\" instead." }, "region": { "type": "string", "description": "Region for deployment.", "x-deprecated": "Use \"the environment variables\" instead." }, "bucket": { "type": "string", "description": "AWS bucket to be used.", "x-deprecated": "Use \"the environment variables\" instead." }, "subFolder": { "type": "string", "description": "Subfolder from AWS bucket." }, "cfDistributionId": { "type": "string", "description": "Optional AWS CloudFront distribution id to create an invalidation." }, "buildTarget": { "type": "string", "description": "A named build target, as specified in the `configurations` section of angular.json . Each named target is accompanied by a configuration of option defaults for that target. This is equivalent as calling the command `ng build --configuration=XXX`." } } }