Skip to content

Commit

Permalink
Merge pull request #168 from stellar/dependencies
Browse files Browse the repository at this point in the history
Update dependencies
  • Loading branch information
bartekn committed May 29, 2018
2 parents 28b69c7 + 72bda8f commit 30f8be6
Show file tree
Hide file tree
Showing 4 changed files with 5,684 additions and 10 deletions.
2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ gulp.task('build:browser', ['lint:src'], function() {
]
}))
// Add EventSource polyfill for IE11
.pipe(plugins.insert.prepend(fs.readFileSync('./node_modules/event-source-polyfill/eventsource.js')))
.pipe(plugins.insert.prepend(fs.readFileSync('./node_modules/event-source-polyfill/src/eventsource.min.js')))
.pipe(plugins.rename('stellar-sdk.js'))
.pipe(gulp.dest('dist'))
.pipe(plugins.uglify({
Expand Down
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,12 +62,12 @@
"karma-chrome-launcher": "^0.1.7",
"karma-firefox-launcher": "^0.1.4",
"karma-mocha": "^0.1.10",
"karma-phantomjs-launcher": "^0.1.4",
"karma-phantomjs-launcher": "^1.0.4",
"karma-sauce-launcher": "^1.1.0",
"karma-sinon": "^1.0.4",
"karma-sinon-chai": "^0.3.0",
"karma-webpack": "^1.7.0",
"lodash": "^3.10.1",
"lodash": "^4.17.10",
"minami": "^1.1.1",
"mocha": "~1.17.1",
"run-sequence": "^1.0.2",
Expand All @@ -76,13 +76,13 @@
"webpack": "^1.13.2"
},
"dependencies": {
"urijs": "1.18.4",
"axios": "^0.12.0",
"urijs": "1.19.1",
"axios": "^0.18.0",
"bluebird": "^3.1.5",
"es6-promise": "^3.0.2",
"event-source-polyfill": "0.0.7",
"eventsource": "^0.2.1",
"lodash": "^4.0.1",
"es6-promise": "^4.2.4",
"event-source-polyfill": "0.0.12",
"eventsource": "^1.0.5",
"lodash": "^4.17.10",
"stellar-base": "^0.7.6",
"toml": "^2.3.0"
}
Expand Down
2 changes: 1 addition & 1 deletion test/integration/server_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ describe("integration tests", function () {
server.submitTransaction(tx)
.then(result => done(new Error("This promise should be rejected.")))
.catch(error => {
expect(error.data.extras.result_codes.transaction).to.equal('tx_bad_seq');
expect(error.response.data.extras.result_codes.transaction).to.equal('tx_bad_seq');
done();
});
});
Expand Down
Loading

0 comments on commit 30f8be6

Please sign in to comment.