mirror of
https://github.com/gabehf/Tdarr_Plugins.git
synced 2026-03-10 16:00:28 -07:00
Plugin update
This commit is contained in:
parent
5f68989571
commit
90e2b3923a
85 changed files with 2093 additions and 1007 deletions
|
|
@ -3,7 +3,7 @@ module.exports.dependencies = [
|
|||
'import-fresh',
|
||||
];
|
||||
|
||||
module.exports.details = function details() {
|
||||
const details = () => {
|
||||
return {
|
||||
id: 'Tdarr_Plugin_zzzz_Post_Proc_Example',
|
||||
Stage: 'Post-processing', // Preprocessing or Post-processing. Determines when the plugin will be executed. This plugin does some stuff after all plugins have been executed
|
||||
|
|
@ -41,7 +41,7 @@ module.exports.details = function details() {
|
|||
};
|
||||
};
|
||||
|
||||
module.exports.plugin = function plugin(file, librarySettings, inputs) {
|
||||
const plugin = (file, librarySettings, inputs, otherArguments) => {
|
||||
// Only 'require' dependencies within this function or other functions. Do not require in the top scope.
|
||||
const importFresh = require('import-fresh');
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue