UNPKG

@tarojs/cli

Version:
57 lines 2.6 kB
"use strict"; var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } return new (P || (P = Promise))(function (resolve, reject) { function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } step((generator = generator.apply(thisArg, _arguments || [])).next()); }); }; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = (ctx) => { ctx.registerCommand({ name: 'init', optionsMap: { '--name [name]': '项目名称', '--description [description]': '项目介绍', '--typescript': '使用TypeScript', '--build-es5': '是否需要编译为es5', '--npm [npm]': '包管理工具', '--template-source [templateSource]': '项目模板源', '--clone [clone]': '拉取远程模板时使用git clone', '--template [template]': '项目模板', '--css [css]': 'CSS预处理器(sass/less/stylus/none)', '--autoInstall': '自动安装依赖', '-h, --help': 'output usage information' }, fn(opts) { return __awaiter(this, void 0, void 0, function* () { // init project const { appPath } = ctx.paths; const { projectName, templateSource, clone, template, description, typescript, buildEs5, css, npm, framework, compiler, hideDefaultTemplate, sourceRoot, autoInstall, ask } = opts.options; const Project = require('../../create/project').default; const project = new Project({ sourceRoot, projectName, projectDir: appPath, npm, templateSource, clone, template, description, typescript, buildEs5, framework, compiler, hideDefaultTemplate, autoInstall, css, ask }); project.create(); }); } }); }; //# sourceMappingURL=init.js.map