UNPKG

480 BJavaScriptView Raw
1#!/usr/bin/env node
2
3var neodoc = require("neodoc"),
4 args = neodoc.run(`inlinejs
5
6Usage:
7 inlinejs [options] <entry_file>
8
9Options:
10 -o --out FILE Output file. Print to stdout if omitted.
11 -d --max-depth COUNT Max depth of the dependency tree. [default: 10]
12 -n --dry-run Print the file name instead of writing to disk.
13 -h --help Show this.
14 -v --version Show version.`, {
15 laxPlacement: true
16 });
17
18require("./index").init({args});