Updated modules dependencies

This commit is contained in:
Djamil Legato
2016-08-01 21:08:34 -07:00
parent 4a47a837d7
commit be6c856b95
6 changed files with 66 additions and 40 deletions
+29 -16
View File
@@ -4383,7 +4383,6 @@ module.exports = parse
},{}],99:[function(require,module,exports){
// shim for using process in browser
var process = module.exports = {};
// cached from whatever global is present so that test runners that stub it
@@ -4395,21 +4394,35 @@ var cachedSetTimeout;
var cachedClearTimeout;
(function () {
try {
cachedSetTimeout = setTimeout;
} catch (e) {
cachedSetTimeout = function () {
throw new Error('setTimeout is not defined');
try {
cachedSetTimeout = setTimeout;
} catch (e) {
cachedSetTimeout = function () {
throw new Error('setTimeout is not defined');
}
}
}
try {
cachedClearTimeout = clearTimeout;
} catch (e) {
cachedClearTimeout = function () {
throw new Error('clearTimeout is not defined');
try {
cachedClearTimeout = clearTimeout;
} catch (e) {
cachedClearTimeout = function () {
throw new Error('clearTimeout is not defined');
}
}
}
} ())
function runTimeout(fun) {
if (cachedSetTimeout === setTimeout) {
return setTimeout(fun, 0);
} else {
return cachedSetTimeout.call(null, fun, 0);
}
}
function runClearTimeout(marker) {
if (cachedClearTimeout === clearTimeout) {
clearTimeout(marker);
} else {
cachedClearTimeout.call(null, marker);
}
}
var queue = [];
var draining = false;
var currentQueue;
@@ -4434,7 +4447,7 @@ function drainQueue() {
if (draining) {
return;
}
var timeout = cachedSetTimeout(cleanUpNextTick);
var timeout = runTimeout(cleanUpNextTick);
draining = true;
var len = queue.length;
@@ -4451,7 +4464,7 @@ function drainQueue() {
}
currentQueue = null;
draining = false;
cachedClearTimeout(timeout);
runClearTimeout(timeout);
}
process.nextTick = function (fun) {
@@ -4463,7 +4476,7 @@ process.nextTick = function (fun) {
}
queue.push(new Item(fun, args));
if (queue.length === 1 && !draining) {
cachedSetTimeout(drainQueue, 0);
runTimeout(drainQueue);
}
};
+2 -2
View File
@@ -10,13 +10,13 @@
"slick": "^1.12.2"
},
"devDependencies": {
"browserify": "^13.0.1",
"browserify": "^13.1.0",
"gulp": "^3.9.1",
"gulp-if": "^2.0.1",
"gulp-rename": "^1.2.2",
"gulp-ruby-sass": "^2.0.6",
"gulp-sourcemaps": "^2.0.0-alpha",
"gulp-uglify": "^1.5.4",
"gulp-uglify": "^2.0.0",
"gulp-util": "^3.0.7",
"merge-stream": "^1.0.0",
"vinyl-buffer": "^1.0.0",
+2 -2
View File
@@ -3,13 +3,13 @@
"version": "1.0.0",
"dependencies": {},
"devDependencies": {
"browserify": "^13.0.1",
"browserify": "^13.1.0",
"gulp": "^3.9.1",
"gulp-if": "^2.0.1",
"gulp-rename": "^1.2.2",
"gulp-ruby-sass": "^2.0.6",
"gulp-sourcemaps": "^2.0.0-alpha",
"gulp-uglify": "^1.5.4",
"gulp-uglify": "^2.0.0",
"gulp-util": "^3.0.7",
"merge-stream": "^1.0.0",
"vinyl-buffer": "^1.0.0",
+2 -2
View File
@@ -5,14 +5,14 @@
"main": "gulpfile.js",
"dependencies": {},
"devDependencies": {
"browserify": "^13.0.1",
"browserify": "^13.1.0",
"gulp": "^3.9.1",
"gulp-if": "^2.0.1",
"gulp-jsonminify": "1.0.0",
"gulp-rename": "^1.2.2",
"gulp-ruby-sass": "^2.0.6",
"gulp-sourcemaps": "^2.0.0-alpha",
"gulp-uglify": "^1.5.4",
"gulp-uglify": "^2.0.0",
"gulp-util": "^3.0.7",
"merge-stream": "^1.0.0",
"vinyl-buffer": "^1.0.0",
+29 -16
View File
@@ -1,6 +1,5 @@
require=(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){
// shim for using process in browser
var process = module.exports = {};
// cached from whatever global is present so that test runners that stub it
@@ -12,21 +11,35 @@ var cachedSetTimeout;
var cachedClearTimeout;
(function () {
try {
cachedSetTimeout = setTimeout;
} catch (e) {
cachedSetTimeout = function () {
throw new Error('setTimeout is not defined');
try {
cachedSetTimeout = setTimeout;
} catch (e) {
cachedSetTimeout = function () {
throw new Error('setTimeout is not defined');
}
}
}
try {
cachedClearTimeout = clearTimeout;
} catch (e) {
cachedClearTimeout = function () {
throw new Error('clearTimeout is not defined');
try {
cachedClearTimeout = clearTimeout;
} catch (e) {
cachedClearTimeout = function () {
throw new Error('clearTimeout is not defined');
}
}
}
} ())
function runTimeout(fun) {
if (cachedSetTimeout === setTimeout) {
return setTimeout(fun, 0);
} else {
return cachedSetTimeout.call(null, fun, 0);
}
}
function runClearTimeout(marker) {
if (cachedClearTimeout === clearTimeout) {
clearTimeout(marker);
} else {
cachedClearTimeout.call(null, marker);
}
}
var queue = [];
var draining = false;
var currentQueue;
@@ -51,7 +64,7 @@ function drainQueue() {
if (draining) {
return;
}
var timeout = cachedSetTimeout(cleanUpNextTick);
var timeout = runTimeout(cleanUpNextTick);
draining = true;
var len = queue.length;
@@ -68,7 +81,7 @@ function drainQueue() {
}
currentQueue = null;
draining = false;
cachedClearTimeout(timeout);
runClearTimeout(timeout);
}
process.nextTick = function (fun) {
@@ -80,7 +93,7 @@ process.nextTick = function (fun) {
}
queue.push(new Item(fun, args));
if (queue.length === 1 && !draining) {
cachedSetTimeout(drainQueue, 0);
runTimeout(drainQueue);
}
};
+2 -2
View File
@@ -16,14 +16,14 @@
"webfontloader": "^1.6.26"
},
"devDependencies": {
"browserify": "^13.0.1",
"browserify": "^13.1.0",
"deep-diff": "^0.3.4",
"gulp": "^3.9.1",
"gulp-if": "^2.0.1",
"gulp-rename": "^1.2.2",
"gulp-ruby-sass": "^2.0.6",
"gulp-sourcemaps": "^2.0.0-alpha",
"gulp-uglify": "^1.5.4",
"gulp-uglify": "^2.0.0",
"gulp-util": "^3.0.7",
"merge-stream": "^1.0.0",
"vinyl-buffer": "^1.0.0",