HJ_Client/extensions/my_builder/dist/builder.js
DESKTOP-15R5JU0\legu 62fef0360c init
2023-11-17 14:13:11 +08:00

25 lines
614 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.configs = exports.unload = exports.load = void 0;
const load = function () {
console.debug('custom-build-example load');
};
exports.load = load;
const unload = function () {
console.debug('custom-build-example unload');
};
exports.unload = unload;
const buildPluginWeb = {
hooks: './builderWeb',
options: {}
};
const buildPluginNative = {
hooks: './builderNative',
options: {}
};
exports.configs = {
'android': buildPluginNative,
'web-mobile': buildPluginWeb,
'web-desktop': buildPluginWeb
};