nexrender-comp-sequence
v0.0.2
Published
Nexrender action plugin to combine comps
Downloads
1
Readme
nexrender-action-sequence-comps
This plugin causes comps in the target project to be combined into one comp before rendering
Install
npm install nexrender-comp-sequence
How to use
- Add this module as the last pre-render action
- Add an array of comps to sequence as
sequence
. They will be sequenced in the order you list them - The target comp you supply will be used as a template
{
"template": {
"src": "http://www.foo.com/template.aep",
"composition": "used-as-a-template"
},
"actions": {
"prerender": [
{
"module": "nexrender-comp-sequence",
"sequence": [
"first-comp-to-be-added",
"second-comp",
"third-comp"
]
}
],
Notes
The new comp will only contain the work areas - other parts will be trimmed off
This plugin is based on the excellent MOGRT action which you can find here https://github.com/vonstring/nexrender-action-mogrt-template