Skip to content

Commit 4328889

Browse files
committed
Preparing for v3.0.14 release
1 parent a527b9d commit 4328889

File tree

7 files changed

+5944
-4594
lines changed

7 files changed

+5944
-4594
lines changed

RELEASE_NOTES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## Release Notes
22

3-
### TBD
3+
### v3.0.14 (2020-02-25)
44

55
* Fix a bug where `.` and `..` in relative references could be represented wrongly in `refDetails.fqURI`
66
* Fix a bug where locally-circular references to itself is identified

bin/json-refs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@
2626

2727
'use strict';
2828

29+
// Set here so that commander does the right thing
30+
process.stdout.columns = 120;
31+
2932
var JsonRefs = require('..');
3033
var program = require('commander');
3134
var pkg = require('../package.json');
@@ -57,7 +60,7 @@ function optionArrayAppender (values) {
5760

5861
function handleUnknownCommand (command) {
5962
// Using log instead of error since commander.js uses console.log for help output
60-
console.log(program._name + ' does not support the ' + command + ' command.');
63+
console.log(program._name + ' does not support the ' + command.parent.args[0] + ' command.');
6164

6265
program.outputHelp();
6366
};

dist/json-refs-min.js

Lines changed: 5 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)