mirror of
https://github.com/cocos/cocos-engine.git
synced 2026-09-06 15:48:37 +08:00
21 lines
912 B
TypeScript
21 lines
912 B
TypeScript
|
|
import { nativePackToolMg } from './base/manager';
|
|
import { MacPackTool } from './platforms/mac';
|
|
import { WindowsPackTool } from './platforms/windows';
|
|
import { AndroidPackTool } from './platforms/android';
|
|
import { OpenHarmonyPackTool } from './platforms/openharmony';
|
|
import { OHOSPackTool } from './platforms/ohos';
|
|
import { IOSPackTool } from './platforms/ios';
|
|
import { HuaweiAGCPackTool } from './platforms/huawei-agc';
|
|
|
|
nativePackToolMg.register('ios', new IOSPackTool());
|
|
nativePackToolMg.register('mac', new MacPackTool());
|
|
nativePackToolMg.register('windows', new WindowsPackTool());
|
|
nativePackToolMg.register('android', new AndroidPackTool());
|
|
nativePackToolMg.register('openharmony', new OpenHarmonyPackTool());
|
|
nativePackToolMg.register('ohos', new OHOSPackTool());
|
|
nativePackToolMg.register('huawei-agc', new HuaweiAGCPackTool());
|
|
|
|
export * from './base/manager';
|
|
export * from './base/default';
|