nexrender-action-template-cache
v1.5.0
Published
Caches and tests to see if a cached template with the same name exists, if so, sets the template.src to the cached file
Downloads
3
Maintainers
Readme
nexrender-action-template-cache
Install
npm install nexrender-action-template-cache@latest
How to use
- Add this module to
predownload
andpostdownload
- optionally configure a
cacheDir
name, make sure you set the samecacheDir
for both steps
{
"template": {
"src": "https://example.com/templates/ae-template-to-use.aep",
"composition": "my_composition"
},
"assets": [],
"actions": {
"predownload": [
{
"module": "nexrender-action-template-cache",
"cacheDir": "~/project_cache"
}
],
"postdownload": [
{
"module": "nexrender-action-template-cache",
"cacheDir": "~/project_cache"
}
]
}
}