This repository was archived by the owner on Jan 22, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmoduleManager.js
More file actions
38 lines (35 loc) · 1.4 KB
/
moduleManager.js
File metadata and controls
38 lines (35 loc) · 1.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/*************************************************************************
* ADOBE CONFIDENTIAL
* ___________________
*
* Copyright 2025 Adobe
* All Rights Reserved.
*
* NOTICE: Adobe permits you to use, modify, and distribute this file in
* accordance with the terms of the Adobe license agreement accompanying
* it. If you have received this file from a source other than Adobe,
* then your use, modification, or distribution of it requires the prior
* written permission of Adobe.
**************************************************************************/
/**
* 模块管理器 - 统一管理所有功能模块的导入
* Module Manager - Centralized module import management
*/
// Import all feature modules
const projectLocationDetector = require("./modules/projectLocationDetector");
const exportFolderManager = require("./modules/exportFolderManager");
const resolutionDetector = require("./modules/resolutionDetector");
const fileVersioner = require("./modules/fileVersioner");
const sequenceExporter = require("./modules/sequenceExporter");
const scriptRunner = require("./modules/scriptRunner");
const fileSystemHelper = require("./modules/FileSystemHelper");
// Export all modules as a single object
module.exports = {
projectLocationDetector,
exportFolderManager,
resolutionDetector,
fileVersioner,
sequenceExporter,
scriptRunner,
fileSystemHelper
};