mirror of
https://github.com/nodejs/node.git
synced 2024-11-30 23:43:09 +01:00
503342e4e7
PR-URL: https://github.com/nodejs/node/pull/12756 Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com>
35 lines
807 B
JavaScript
Executable File
35 lines
807 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
/**
|
|
* @author Titus Wormer
|
|
* @copyright 2015 Titus Wormer
|
|
* @license MIT
|
|
* @module remark:cli
|
|
* @fileoverview CLI to process markdown.
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
/* Dependencies. */
|
|
var start = require('unified-args');
|
|
var extensions = require('markdown-extensions');
|
|
var processor = require('remark');
|
|
var proc = require('remark/package.json');
|
|
var cli = require('./package.json');
|
|
|
|
/* Start. */
|
|
start({
|
|
processor: processor,
|
|
name: proc.name,
|
|
description: cli.description,
|
|
version: [
|
|
proc.name + ': ' + proc.version,
|
|
cli.name + ': ' + cli.version
|
|
].join(', '),
|
|
pluginPrefix: proc.name,
|
|
presetPrefix: proc.name + '-preset',
|
|
packageField: proc.name + 'Config',
|
|
rcName: '.' + proc.name + 'rc',
|
|
ignoreName: '.' + proc.name + 'ignore',
|
|
extensions: extensions
|
|
});
|