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

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

Conflicts:
	package.json
...@@ -2,7 +2,5 @@ language: node_js ...@@ -2,7 +2,5 @@ language: node_js
email: email:
on_failure: change on_failure: change
on_success: never on_success: never
before_script:
- npm install -g grunt-cli
after_success: after_success:
- npm run coveralls - npm run coveralls
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
var defaults = require('./../defaults'); var defaults = require('./../defaults');
var utils = require('./../utils'); var utils = require('./../utils');
var buildURL = require('./../helpers/buildUrl'); var buildURL = require('./../helpers/buildURL');
var parseHeaders = require('./../helpers/parseHeaders'); var parseHeaders = require('./../helpers/parseHeaders');
var transformData = require('./../helpers/transformData'); var transformData = require('./../helpers/transformData');
var isURLSameOrigin = require('./../helpers/isURLSameOrigin'); var isURLSameOrigin = require('./../helpers/isURLSameOrigin');
......
...@@ -65,3 +65,4 @@ module.exports = function buildURL(url, params, paramsSerializer) { ...@@ -65,3 +65,4 @@ module.exports = function buildURL(url, params, paramsSerializer) {
return url; return url;
}; };
...@@ -4,8 +4,8 @@ ...@@ -4,8 +4,8 @@
"description": "Promise based HTTP client for the browser and node.js", "description": "Promise based HTTP client for the browser and node.js",
"main": "index.js", "main": "index.js",
"scripts": { "scripts": {
"build": "grunt build", "build": "./node_modules/.bin/grunt build",
"test": "grunt test", "test": "./node_modules/.bin/grunt test",
"start": "node ./sandbox/server.js", "start": "node ./sandbox/server.js",
"examples": "node ./examples/server.js", "examples": "node ./examples/server.js",
"coveralls": "cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js" "coveralls": "cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
......
...@@ -63,3 +63,4 @@ describe('helpers::buildURL', function () { ...@@ -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.
先完成此消息的编辑!
想要评论请 注册