Skip to content

Commit

Permalink
Updating dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
John Vilk committed Aug 18, 2016
1 parent 48b2c61 commit c17c456
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 22 deletions.
42 changes: 21 additions & 21 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
"node": ">= 0.10"
},
"devDependencies": {
"aliasify": "^1.9.0",
"archiver": "^0.21.0",
"aliasify": "^2.0.0",
"archiver": "^1.0.1",
"bfs-buffer": "^0.1.7",
"bfs-path": "^0.1.2",
"bfs-process": "^0.1.6",
Expand All @@ -34,32 +34,32 @@
"coffee-script": "^1.10.0",
"detect-browsers": "^2.0.0",
"dropbox": "^0.10.3",
"grunt": "^0.4.5",
"grunt-browserify": "^4.0.1",
"grunt-cli": "^0.1.13",
"grunt-contrib-connect": "^0.11.2",
"grunt-contrib-copy": "^0.8.2",
"grunt-contrib-uglify": "^0.11.1",
"grunt-contrib-watch": "*",
"grunt": "^1.0.1",
"grunt-browserify": "^5.0.0",
"grunt-cli": "^1.2.0",
"grunt-contrib-connect": "^1.0.2",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-uglify": "^2.0.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-exorcise": "^2.1.1",
"grunt-istanbul": "^0.7.0",
"grunt-karma": "^0.12.1",
"grunt-karma": "^2.0.0",
"grunt-shell": "^1.2.1",
"grunt-ts": "^5.3.2",
"karma": "^0.13.21",
"karma": "^1.2.0",
"karma-browserify": "^5.0.2",
"karma-chrome-launcher": "^0.2.2",
"karma-coverage": "^0.5.3",
"karma-firefox-launcher": "^0.1.7",
"karma-ie-launcher": "^0.2.0",
"karma-mocha": "^0.2.2",
"karma-opera-launcher": "^0.3.0",
"karma-safari-launcher": "^0.1.1",
"mocha": "^2.4.5",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.1",
"karma-firefox-launcher": "^1.0.0",
"karma-ie-launcher": "^1.0.0",
"karma-mocha": "^1.1.1",
"karma-opera-launcher": "^1.0.0",
"karma-safari-launcher": "^1.0.0",
"mocha": "^3.0.2",
"mold-source-map": "^0.4.0",
"object-wrapper": "^0.1.1",
"remap-istanbul": "^0.5.1",
"tsify": "^0.13.2",
"tsify": "^1.0.3",
"typescript": "^1.8.2",
"underscore": "^1.8.3"
},
Expand All @@ -74,7 +74,7 @@
}
},
"dependencies": {
"async": "^1.5.2",
"async": "^2.0.1",
"pako": "^1.0.0"
}
}
3 changes: 2 additions & 1 deletion src/core/FS.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import path = require('path');
import Stats from './node_fs_stats';
// Typing info only.
import _fs = require('fs');
import global = require('./global');

declare var __numWaiting: number;

Expand All @@ -30,7 +31,7 @@ function wrapCb<T extends Function>(cb: T, numArgs: number): T {
// We could use `arguments`, but Function.call/apply is expensive. And we only
// need to handle 1-3 arguments
if (typeof __numWaiting === 'undefined') {
__numWaiting = 0;
global.__numWaiting = 0;
}
__numWaiting++;

Expand Down

0 comments on commit c17c456

Please sign in to comment.