提交 729ff051 编写于 作者: V Vineet Hawal

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

Conflicts:
	package.json
......@@ -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
......@@ -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;
};
......@@ -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 () {
})
});
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册