UNPKG

xeira

Version:

One Web Dev stack tool to rule them all

59 lines (39 loc) 2.89 kB
import {ctitle, ccmd, cxeira, coption_name, coption_value, cexample, cfilename} from '../../src/utils/colors.mjs' import {configText, monoText, helpText} from './util/index.mjs' import xeiraInit from '../../src/scripts/init/index.mjs' const aliases= {force: 'f', pkgjson: 'pj', save: 's'} const configOptions= ['product', 'target', 'source_index', 'linter', 'transpile_folder', 'transpiler', 'minifier', 'bundle_folder', 'bundle_name', 'bundle_extension', 'bundle_inline_dynamic_imports', 'bundle_node_polyfill', 'bundler', 'test_folder', 'dev_server', 'demo_mode', 'demo_demoer', 'verbose'] const help = ` ${ctitle('SYNPSIS')} ${cxeira('xeira')} ${ccmd('init')} [${coption_name('--force')}] [${coption_name('--pkgjson')}] [${coption_name('--save')}] [${coption_value('config')}] [${coption_name('--filter')}] ${ctitle('DESCRIPTION')} It will guide you to create ${cfilename('xeira.json')}. ${ctitle('OPTIONS')} ${coption_name('--force')}, ${coption_name('--f')} Force ${cxeira('xeira')} to prompt you and ask you for config values even if they are already present on ${cfilename('xeira.json')}. Values will be overwritten there. ${coption_name('--pkgjson')}, ${coption_name('--pj')} ${ccmd('init')} actions include to update some fields on your ${cfilename('package.json')} . By default, ${cxeira('xeira')} ask you for cofirmation before doing so. If you specify ${coption_value('pkgjson')}, ${cxeira('xeira')} proceeds without asking. ${coption_name('--save')}, ${coption_name('--s')} By default, ${cxeira('xeira')} saves ${cfilename('xeira.json')} just if you have been prompted with some questions (so there is some change to save). Passing ${coption_value('save')}, you force ${cxeira('xeira')} to save the configuration file even if no question was prompted. This can be used to create a ${cfilename('xeira.json')} from one command, for example: ${cexample('xeira init --save --product=package --target=both --source_index=./src/index.js --linter=eslint --transpile_folder=./lib_custom --transpiler=babel --minifier=uglify --bundle_folder=./dist --bundler=rollup --test_folder=./test_custom --dev_server=rollup --demo_mode=auto --demo_demoer=rollup --verbose=true')} ${helpText} ${configText(configOptions)} ${monoText} ${ctitle('EXAMPLES')} ${cexample('xeira init --force')} Will ask you on prompt about every config value ${cexample('xeira init --product=package --target=both --source_index=./src/index.js --linter=eslint --transpile_folder=./lib_custom --transpiler=babel --minifier=uglify --bundle_folder=./dist --bundler=rollup --test_folder=./test_custom --dev_server=rollup --demo_mode=auto --demo_demoer=rollup --verbose=true')} Set the whole ${cfilename('xeira.json')} from a single command ` export {aliases, configOptions, help, xeiraInit as handler}