Skip to content

Commit a329b77

Browse files
"release v1.0.0-alpha.12"
1 parent d637045 commit a329b77

6 files changed

Lines changed: 20 additions & 14 deletions

File tree

dist/ref-parser.js

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ function crawl(obj, path, parents, $refs, options) {
6363

6464
},{"./ref":7,"./util":10,"lodash/collection/forEach":47,"lodash/lang/isArray":83,"lodash/lang/isObject":88,"url":137}],2:[function(require,module,exports){
6565
/**!
66-
* JSON Schema $Ref Parser v1.0.0-alpha.11
66+
* JSON Schema $Ref Parser v1.0.0-alpha.12
6767
*
6868
* @link https://github.com/BigstickCarpet/json-schema-ref-parser
6969
* @license MIT
@@ -3799,8 +3799,14 @@ function YAMLException(reason, mark) {
37993799
// Super constructor
38003800
Error.call(this);
38013801

3802-
// Super helper method to include stack trace in error object
3803-
Error.captureStackTrace(this, this.constructor);
3802+
// Include stack trace in error object
3803+
if (Error.captureStackTrace) {
3804+
// Chrome and NodeJS
3805+
Error.captureStackTrace(this, this.constructor);
3806+
} else {
3807+
// FF, IE 10+ and Safari 6+. Fallback for others
3808+
this.stack = (new Error()).stack || '';
3809+
}
38043810

38053811
this.name = 'YAMLException';
38063812
this.reason = reason;

dist/ref-parser.js.map

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

dist/ref-parser.min.js

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

dist/ref-parser.min.js.map

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

lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**!
2-
* JSON Schema $Ref Parser v1.0.0-alpha.11
2+
* JSON Schema $Ref Parser v1.0.0-alpha.12
33
*
44
* @link https://github.com/BigstickCarpet/json-schema-ref-parser
55
* @license MIT

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "json-schema-ref-parser",
3-
"version": "1.0.0-alpha.11",
3+
"version": "1.0.0-alpha.12",
44
"description": "Parse, Resolve, and Dereference JSON Schema $ref pointers",
55
"keywords": [
66
"json",
@@ -63,7 +63,7 @@
6363
"dependencies": {
6464
"debug": "^2.2.0",
6565
"es6-promise": "^3.0.2",
66-
"js-yaml": "^3.4.0",
66+
"js-yaml": "^3.4.1",
6767
"lodash": "^3.10.1",
6868
"ono": "^1.0.22"
6969
}

0 commit comments

Comments
 (0)