buildAngularApp
Runs operations to build an Angular2 application.
Node dependency
This plugin can execute on any endpoint with Node v10.13 or greater.
Inputs
Input Name | Input Code | Required | Description |
---|---|---|---|
Node Executable Path |
| No | An absolute path to a Node executable or its parent directory. If not given, node in path will be considered. @Since 7.0.0.3 |
Nodejs Version |
| No | Nodejs version. Installs node with the provided version. This input will be ignored if the input |
Save Artifacts |
| Yes | If checked, artifacts will be saved to the Artifacts folder automatically. If you need to perform additional steps on the output, then set this to false and use a copyArtifacts step later in the workflow. Set to true by default |
Output Folder Directory |
| No | Specify the output path relative to the project location. By default, the "dist" folder will be used. |
Production Build |
| Yes | Should the ng build command be appended with the "--prod" flag. Defaults to true. Leave this as true if this build will eventually be served in a production environment. |
Additional Options |
| No | Provide any additional arguments to the ng build command. For example --stats-json |
NPM Install Arguments |
| No | Allows to enter one or more arguments to npm install command. (Ex --no-optional) @Since 7.0.0.3 |
.npmrc |
| No | npm configurations entered as list of key = value parameters (e.g. loglevel=notice), one key value pair per line. @Since 7.0.0.3 All default npmrc configurations are listed when the command “npm config list -l” is run. Some examples are- 1.registry=https://registry.npmjs.org/ (Specifies the URL of the npm registry) 2.strict-ssl=false (Controls SSL certificate validation during HTTPS requests.) 3.proxy=http://your-proxy-url:port 4.loglevel=verbose (Sets the logging level for npm output (e.g., 5.production=true (Instructs npm to skip installation of devDependencies.) For more details, refer npm-config | npm Docs Also, when multiple .npmrc files are available, npm follows a specific hierarchy for merging these configurations. Such as Project-Specific > User-Specific >Global. For more details, refer https://docs.npmjs.com/cli/v10/configuring-npm/npmrc |
Artifacts
This operation produces artifacts if the Save Artifacts input is checked. The generated artifact file(s) are automatically copied to artifacts folder and subsequently uploaded to artifact repository.
Endpoint Selection
This operation delegates endpoint selection to the workflow developer. The workflow editor will default the selection to "All", which selects all available endpoints associated to the target. Selecting a specific resource will result in selection of endpoints associated to the target which have that resource defined.
Endpoint Execution
This operation delegates endpoint execution to the workflow developer. The workflow editor will default to "Any", which will execute on a single random endpoint from the selected endpoints.
Changing this value to "All" to will result in execution on all selected endpoints.
Special Considerations
AngularJS
This plugin builds Angular2 applications. AngularJS is not supported
- style