chore: realign next on latest [ci skip]
This commit is contained in:
@ -1,3 +1,10 @@
|
||||
## [1.1.2](https://github.com/getmeli/meli-cli/compare/v1.1.1...v1.1.2) (2020-12-23)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* cannot upload large sites ([2b3ea92](https://github.com/getmeli/meli-cli/commit/2b3ea929c4b0f315f058ed9885669aecbc7b22bf))
|
||||
|
||||
## [1.1.1](https://github.com/getmeli/meli-cli/compare/v1.1.0...v1.1.1) (2020-12-18)
|
||||
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@getmeli/cli",
|
||||
"version": "1.1.1",
|
||||
"version": "1.1.2",
|
||||
"description": "Meli CLI",
|
||||
"main": "build/index.js",
|
||||
"bin": {
|
||||
|
@ -1,6 +1,9 @@
|
||||
import axiosModule from 'axios';
|
||||
import { ensureStackTrace } from './ensure-stack-trace';
|
||||
|
||||
export const axios = axiosModule.create();
|
||||
export const axios = axiosModule.create({
|
||||
maxBodyLength: Infinity,
|
||||
maxContentLength: Infinity,
|
||||
});
|
||||
|
||||
ensureStackTrace(axios);
|
||||
|
Reference in New Issue
Block a user