diff --git a/package.json b/package.json index 6ed35f73..d79bca85 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "streamline", "description": "Asynchronous Javascript for dummies", - "version": "2.0.5", + "version": "2.0.6", "license": "MIT", "homepage": "http://github.com/Sage/streamlinejs", "author": "Bruno Jouhier", @@ -16,10 +16,10 @@ "commander": "^2.8.1", "colors": "^1.1.2", "babel-core": "^6.3.26", - "babel-plugin-streamline": "^2.0.1", + "babel-plugin-streamline": "^2.0.4", "babel-preset-es2015": "^6.3.13", "source-map-support": "git+https://github.com/Sage/node-source-map-support#catch-missing-sourcemap-element", - "streamline-runtime": "^1.0.15" + "streamline-runtime": "^1.0.17" }, "optionalDependencies": { "fibers": "^1.0.6" diff --git a/test/common/stack-test._js b/test/common/stack-test._js index d5484c83..451b5f97 100644 --- a/test/common/stack-test._js +++ b/test/common/stack-test._js @@ -124,7 +124,7 @@ function T(_, fn, code, failFn){ catch (ex) { var s = ex.stack; s = s.split('\n').filter(function(l) { - return l.indexOf('<<<') < 0; + return l.indexOf('<<<') < 0 && !/\bstreamline-runtime.lib/.test(l); }).map(function(l){ l = l.replace(/\bFunction\.(\w+) \[as fiberized-\d+\]/, '$1'); // We get Object.A in futures test because of a bind call. Ignore this difference.