2
0
mirror of https://github.com/tenrok/axios.git synced 2026-05-24 14:04:14 +03:00

Merge branch 'master' of github.com:mzabriskie/axios into xDomainRequestSupport

Conflicts:
	package.json
This commit is contained in:
Vineet Hawal
2015-11-22 00:17:24 +05:30
5 changed files with 5 additions and 5 deletions
-2
View File
@@ -2,7 +2,5 @@ language: node_js
email:
on_failure: change
on_success: never
before_script:
- npm install -g grunt-cli
after_success:
- npm run coveralls
+1 -1
View File
@@ -4,7 +4,7 @@
var defaults = require('./../defaults');
var utils = require('./../utils');
var buildURL = require('./../helpers/buildUrl');
var buildURL = require('./../helpers/buildURL');
var parseHeaders = require('./../helpers/parseHeaders');
var transformData = require('./../helpers/transformData');
var isURLSameOrigin = require('./../helpers/isURLSameOrigin');
@@ -65,3 +65,4 @@ module.exports = function buildURL(url, params, paramsSerializer) {
return url;
};
+2 -2
View File
@@ -4,8 +4,8 @@
"description": "Promise based HTTP client for the browser and node.js",
"main": "index.js",
"scripts": {
"build": "grunt build",
"test": "grunt test",
"build": "./node_modules/.bin/grunt build",
"test": "./node_modules/.bin/grunt test",
"start": "node ./sandbox/server.js",
"examples": "node ./examples/server.js",
"coveralls": "cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
@@ -63,3 +63,4 @@ describe('helpers::buildURL', function () {
})
});