Skip to content

Commit

Permalink
publishing 2.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
bjouhier committed Jan 24, 2016
1 parent 6811cce commit 0203ce5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion test/common/stack-test._js
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 0203ce5

Please sign in to comment.