ionic
Version:
A tool for creating and developing Ionic Framework mobile apps.
47 lines (46 loc) • 1.61 kB
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
const cli_framework_1 = require("@ionic/cli-framework");
const color_1 = require("../../lib/color");
const base_1 = require("./base");
class AddCommand extends base_1.CapacitorCommand {
async getMetadata() {
return {
name: 'add',
type: 'project',
summary: 'Add a native platform to your Ionic project',
description: `
${color_1.input('ionic capacitor add')} will do the following:
- Add a new platform specific folder to your project (ios, android, or electron)
`,
inputs: [
{
name: 'platform',
summary: `The platform to add (e.g. ${['android', 'ios', 'electron'].map(v => color_1.input(v)).join(', ')})`,
validators: [cli_framework_1.validators.required],
},
],
};
}
async preRun(inputs, options, runinfo) {
await this.preRunChecks(runinfo);
if (!inputs[0]) {
const platform = await this.env.prompt({
type: 'list',
name: 'platform',
message: 'What platform would you like to add?',
choices: ['android', 'ios', 'electron'],
});
inputs[0] = platform.trim();
}
}
async run(inputs, options) {
const [platform] = inputs;
const args = ['add'];
if (platform) {
args.push(platform);
}
await this.runCapacitor(args);
}
}
exports.AddCommand = AddCommand;
;