@interopio/desktop-cli
Version:
CLI tool for setting up, building and packaging io.Connect Desktop projects
20 lines • 948 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.releaseCommand = exports.packageCommand = void 0;
const commander_1 = require("commander");
const logger_1 = require("../utils/logger");
const logger = logger_1.Logger.getInstance();
exports.packageCommand = new commander_1.Command('package')
.description('Package the io.cd app for production')
.option('--platform <platform>', 'Specify target platform (win32, darwin, linux)')
.action((options) => {
logger.info('Package command called');
console.log(`Packaging for platform: ${options.platform || 'current'} - Phase 8 implementation required`);
});
exports.releaseCommand = new commander_1.Command('release')
.description('Release a new version of the app')
.action(() => {
logger.info('Release command called');
console.log('Releasing app - Phase 8 implementation required');
});
//# sourceMappingURL=package.command.js.map