mirror of
https://github.com/gabehf/Tdarr_Plugins.git
synced 2026-03-09 15:38:19 -07:00
* Remove importFresh from methods * lint * Remove importFresh * Remove node_modules * Add import-fresh to community plugins download * Add import-fresh to actions and filters * Add intermediate fresh library loader
14 lines
495 B
JavaScript
14 lines
495 B
JavaScript
const importFresh = require('./node_modules/import-fresh');
|
|
|
|
module.exports.remuxContainer = importFresh(
|
|
'./library/actions/remuxContainer.js',
|
|
);
|
|
module.exports.transcodeStandardiseAudioCodecs = importFresh(
|
|
'./library/actions/transcodeStandardiseAudioCodecs.js',
|
|
);
|
|
module.exports.transcodeAddAudioStream = importFresh(
|
|
'./library/actions/transcodeAddAudioStream.js',
|
|
);
|
|
module.exports.transcodeKeepOneAudioStream = importFresh(
|
|
'./library/actions/transcodeKeepOneAudioStream.js',
|
|
);
|