25 lines
614 B
JavaScript
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
|
|
};
|