Skip to content

Commit

Permalink
fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
mifi committed Apr 8, 2020
1 parent 778e179 commit 0b69f1f
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,25 +8,25 @@ const { SourceMapConsumer } = require('source-map');


const cli = meow(`
Usage
$ stacktracify <map-path>
Usage
$ stacktracify <map-path>
Options
Options
--file, -f (default is read from clipboard)
Examples
$ stacktracify /path/to/js.map --file /path/to/my-stacktrace.txt
Examples
$ stacktracify /path/to/js.map --file /path/to/my-stacktrace.txt
`, {
flags: {
file: {
type: 'string',
alias: 'f',
}
}
flags: {
file: {
type: 'string',
alias: 'f',
},
},
});


const file = cli.flags.file;
const { file } = cli.flags;

(async () => {
try {
Expand Down

0 comments on commit 0b69f1f

Please sign in to comment.