2
0
mirror of https://github.com/tenrok/axios.git synced 2026-06-05 16:42:32 +03:00

Releasing 0.15.1

This commit is contained in:
Nick Uraltsev
2016-10-14 23:35:21 -07:00
parent ffd72e646a
commit 3f8b128da4
6 changed files with 32 additions and 38 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
{
"name": "axios",
"main": "./dist/axios.js",
"version": "0.15.0",
"version": "0.15.1",
"homepage": "https://github.com/mzabriskie/axios",
"authors": [
"Matt Zabriskie"
+26 -32
View File
@@ -1,14 +1,14 @@
/* axios v0.15.0 | (c) 2016 by Matt Zabriskie */
/* axios v0.15.1 | (c) 2016 by Matt Zabriskie */
(function webpackUniversalModuleDefinition(root, factory) {
if(typeof exports === 'object' && typeof module === 'object')
module.exports = factory(require("undefined"));
module.exports = factory();
else if(typeof define === 'function' && define.amd)
define(["undefined"], factory);
define([], factory);
else if(typeof exports === 'object')
exports["axios"] = factory(require("undefined"));
exports["axios"] = factory();
else
root["axios"] = factory(root["undefined"]);
})(this, function(__WEBPACK_EXTERNAL_MODULE_16__) {
root["axios"] = factory();
})(this, function() {
return /******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
@@ -98,15 +98,15 @@ return /******/ (function(modules) { // webpackBootstrap
};
// Expose Cancel & CancelToken
axios.Cancel = __webpack_require__(23);
axios.CancelToken = __webpack_require__(24);
axios.isCancel = __webpack_require__(20);
axios.Cancel = __webpack_require__(22);
axios.CancelToken = __webpack_require__(23);
axios.isCancel = __webpack_require__(19);
// Expose all/spread
axios.all = function all(promises) {
return Promise.all(promises);
};
axios.spread = __webpack_require__(25);
axios.spread = __webpack_require__(24);
module.exports = axios;
@@ -444,10 +444,10 @@ return /******/ (function(modules) { // webpackBootstrap
var defaults = __webpack_require__(5);
var utils = __webpack_require__(2);
var InterceptorManager = __webpack_require__(17);
var dispatchRequest = __webpack_require__(18);
var isAbsoluteURL = __webpack_require__(21);
var combineURLs = __webpack_require__(22);
var InterceptorManager = __webpack_require__(16);
var dispatchRequest = __webpack_require__(17);
var isAbsoluteURL = __webpack_require__(20);
var combineURLs = __webpack_require__(21);
/**
* Create a new instance of Axios
@@ -554,7 +554,7 @@ return /******/ (function(modules) { // webpackBootstrap
adapter = __webpack_require__(7);
} else if (typeof process !== 'undefined') {
// For node use HTTP adapter
adapter = __webpack_require__(16);
adapter = __webpack_require__(7);
}
return adapter;
}
@@ -1189,12 +1189,6 @@ return /******/ (function(modules) { // webpackBootstrap
/***/ },
/* 16 */
/***/ function(module, exports) {
module.exports = undefined;
/***/ },
/* 17 */
/***/ function(module, exports, __webpack_require__) {
'use strict';
@@ -1252,14 +1246,14 @@ return /******/ (function(modules) { // webpackBootstrap
/***/ },
/* 18 */
/* 17 */
/***/ function(module, exports, __webpack_require__) {
'use strict';
var utils = __webpack_require__(2);
var transformData = __webpack_require__(19);
var isCancel = __webpack_require__(20);
var transformData = __webpack_require__(18);
var isCancel = __webpack_require__(19);
var defaults = __webpack_require__(5);
/**
@@ -1337,7 +1331,7 @@ return /******/ (function(modules) { // webpackBootstrap
/***/ },
/* 19 */
/* 18 */
/***/ function(module, exports, __webpack_require__) {
'use strict';
@@ -1363,7 +1357,7 @@ return /******/ (function(modules) { // webpackBootstrap
/***/ },
/* 20 */
/* 19 */
/***/ function(module, exports) {
'use strict';
@@ -1374,7 +1368,7 @@ return /******/ (function(modules) { // webpackBootstrap
/***/ },
/* 21 */
/* 20 */
/***/ function(module, exports) {
'use strict';
@@ -1394,7 +1388,7 @@ return /******/ (function(modules) { // webpackBootstrap
/***/ },
/* 22 */
/* 21 */
/***/ function(module, exports) {
'use strict';
@@ -1412,7 +1406,7 @@ return /******/ (function(modules) { // webpackBootstrap
/***/ },
/* 23 */
/* 22 */
/***/ function(module, exports) {
'use strict';
@@ -1437,12 +1431,12 @@ return /******/ (function(modules) { // webpackBootstrap
/***/ },
/* 24 */
/* 23 */
/***/ function(module, exports, __webpack_require__) {
'use strict';
var Cancel = __webpack_require__(23);
var Cancel = __webpack_require__(22);
/**
* A `CancelToken` is an object that can be used to request cancellation of an operation.
@@ -1500,7 +1494,7 @@ return /******/ (function(modules) { // webpackBootstrap
/***/ },
/* 25 */
/* 24 */
/***/ function(module, exports) {
'use strict';
+1 -1
View File
File diff suppressed because one or more lines are too long
+2 -2
View File
File diff suppressed because one or more lines are too long
+1 -1
View File
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "axios",
"version": "0.15.0",
"version": "0.15.1",
"description": "Promise based HTTP client for the browser and node.js",
"main": "index.js",
"scripts": {