Skip to content

Commit cf45f89

Browse files
"release v1.0.0-alpha.19"
1 parent b35ff1d commit cf45f89

9 files changed

Lines changed: 176 additions & 61 deletions

File tree

dist/ref-parser.js

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
(function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.$RefParser = f()}})(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){
22
/**!
3-
* JSON Schema $Ref Parser v1.0.0-alpha.18
3+
* JSON Schema $Ref Parser v1.0.0-alpha.19
44
*
55
* @link https://github.com/BigstickCarpet/json-schema-ref-parser
66
* @license MIT
@@ -14683,6 +14683,7 @@ for (var key in http) {
1468314683
https.request = function (params, cb) {
1468414684
if (!params) params = {};
1468514685
params.scheme = 'https';
14686+
params.protocol = 'https:';
1468614687
return http.request.call(this, params, cb);
1468714688
}
1468814689

@@ -14749,7 +14750,9 @@ function drainQueue() {
1474914750
currentQueue = queue;
1475014751
queue = [];
1475114752
while (++queueIndex < len) {
14752-
currentQueue[queueIndex].run();
14753+
if (currentQueue) {
14754+
currentQueue[queueIndex].run();
14755+
}
1475314756
}
1475414757
queueIndex = -1;
1475514758
len = queue.length;
@@ -14801,7 +14804,6 @@ process.binding = function (name) {
1480114804
throw new Error('process.binding is not supported');
1480214805
};
1480314806

14804-
// TODO(shtylman)
1480514807
process.cwd = function () { return '/' };
1480614808
process.chdir = function (dir) {
1480714809
throw new Error('process.chdir is not supported');
@@ -17442,7 +17444,7 @@ module.exports = nextTick;
1744217444
function nextTick(fn) {
1744317445
var args = new Array(arguments.length - 1);
1744417446
var i = 0;
17445-
while (i < arguments.length) {
17447+
while (i < args.length) {
1744617448
args[i++] = arguments[i];
1744717449
}
1744817450
process.nextTick(function afterTick() {

dist/ref-parser.js.map

Lines changed: 5 additions & 5 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: 4 additions & 4 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: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/bundle.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.18
2+
* JSON Schema $Ref Parser v1.0.0-alpha.19
33
*
44
* @link https://github.com/BigstickCarpet/json-schema-ref-parser
55
* @license MIT

package.json

Lines changed: 3 additions & 3 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.18",
3+
"version": "1.0.0-alpha.19",
44
"description": "Parse, Resolve, and Dereference JSON Schema $ref pointers",
55
"keywords": [
66
"json",
@@ -57,7 +57,7 @@
5757
"sinon": "^1.16.1",
5858
"jscs": "^2.1.1",
5959
"jshint": "^2.8.0",
60-
"npm-check-updates": "^2.2.0",
60+
"npm-check-updates": "^2.2.3",
6161
"version-bump-prompt": "^1.5.1"
6262
},
6363
"dependencies": {
@@ -66,4 +66,4 @@
6666
"js-yaml": "^3.4.2",
6767
"ono": "^1.0.22"
6868
}
69-
}
69+
}

tests/bower_components/chai/.bower.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@
2424
"dependencies": {},
2525
"devDependencies": {},
2626
"homepage": "https://github.com/chaijs/chai",
27-
"version": "3.2.0",
28-
"_release": "3.2.0",
27+
"version": "3.3.0",
28+
"_release": "3.3.0",
2929
"_resolution": {
3030
"type": "version",
31-
"tag": "3.2.0",
32-
"commit": "4e18d2a49394f21f49eaea97f556d6a17ecbcc7e"
31+
"tag": "3.3.0",
32+
"commit": "df954ccacf77cc740f45730c04a37bccf7387456"
3333
},
3434
"_source": "git://github.com/chaijs/chai.git",
3535
"_target": "*",

0 commit comments

Comments
 (0)