react-templates/src/options.js

106 lines
3.2 KiB
JavaScript
Raw Normal View History

2014-12-04 17:04:33 +01:00
/**
* @fileoverview Options configuration for optionator.
* @author idok
*/
'use strict';
//------------------------------------------------------------------------------
// Requirements
//------------------------------------------------------------------------------
var optionator = require('optionator');
var pkg = require('../package.json');
var reactDOMSupport = require('./reactDOMSupport');
//------------------------------------------------------------------------------
// Initialization and Public Interface
//------------------------------------------------------------------------------
// exports 'parse(args)', 'generateHelp()', and 'generateHelpForOption(optionName)'
module.exports = optionator({
prepend: [
pkg.name + ' v' + pkg.version,
pkg.description,
'',
'Usage:',
2014-12-15 15:11:53 +01:00
'$ rt <filename> [<filename> ...] [<args>]'
2014-12-04 17:04:33 +01:00
].join('\n'),
concatRepeatedArrays: true,
mergeRepeatedObjects: true,
options: [{
heading: 'Options'
}, {
option: 'help',
alias: 'h',
type: 'Boolean',
description: 'Show help.'
}, {
option: 'color',
alias: 'c',
default: 'true',
type: 'Boolean',
description: 'Use colors in output.'
}, {
2014-12-28 10:47:34 +01:00
option: 'modules',
2014-12-04 17:04:33 +01:00
alias: 'm',
2014-12-28 10:47:34 +01:00
default: 'none',
type: 'String',
2015-04-02 15:00:38 +02:00
description: 'Use output modules. (amd|commonjs|none|es6|typescript|jsrt)'
2014-12-28 10:47:34 +01:00
}, {
option: 'name',
alias: 'n',
type: 'String',
2015-01-22 15:50:50 +01:00
description: 'When using globals, the name for the variable. The default is the [file name]RT, when using amd, the name of the module'
2014-12-10 13:13:16 +01:00
}, {
option: 'dry-run',
alias: 'd',
default: 'false',
type: 'Boolean',
description: 'Run compilation without creating an output file, used to check if the file is valid'
2014-12-04 17:04:33 +01:00
}, {
option: 'force',
alias: 'r',
default: 'false',
type: 'Boolean',
description: 'Force creation of output. skip file check.'
}, {
option: 'format',
alias: 'f',
type: 'String',
default: 'stylish',
//enum: ['stylish', 'json'],
description: 'Use a specific output format. (stylish|json)'
}, {
option: 'target-version',
alias: 't',
type: 'String',
default: '0.13.1',
2014-12-04 17:04:33 +01:00
description: 'React version to generate code for (' + Object.keys(reactDOMSupport).join(', ') + ')'
}, {
option: 'list-target-version',
type: 'Boolean',
default: 'false',
description: 'Show list of target versions'
2014-12-04 17:04:33 +01:00
}, {
option: 'version',
alias: 'v',
type: 'Boolean',
description: 'Outputs the version number.'
}, {
option: 'stack',
alias: 'k',
type: 'Boolean',
description: 'Show stack trace on errors.'
}, {
option: 'react-import-path',
default: 'react/addons',
type: 'String',
description: 'Dependency path for importing React.'
}, {
option: 'lodash-import-path',
default: 'lodash',
type: 'String',
description: 'Dependency path for importing lodash.'
2014-12-04 17:04:33 +01:00
}]
});