Skip to content

Commit

Permalink
chore(release): 5.0.0-alpha.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Pooya Parsa committed Jan 28, 2018
1 parent f281534 commit be4aa6f
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 4 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,27 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

<a name="5.0.0-alpha.0"></a>
# [5.0.0-alpha.0](https://github.com/nuxt-community/axios-module/compare/v4.5.2...v5.0.0-alpha.0) (2018-01-28)


### Code Refactoring

* a better and more stable way to specify baseURL and browserBaseURL options ([533cf4e](https://github.com/nuxt-community/axios-module/commit/533cf4e))


### Features

* interceptor helpers ([fa3eb47](https://github.com/nuxt-community/axios-module/commit/fa3eb47))
* rewrite plugin ([647b58f](https://github.com/nuxt-community/axios-module/commit/647b58f))


### BREAKING CHANGES

* prefix should be set to `/api` for backward compability. refer to new docs.



<a name="4.5.2"></a>
## [4.5.2](https://github.com/nuxt-community/axios-module/compare/v4.5.1...v4.5.2) (2017-12-29)

Expand Down
18 changes: 14 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nuxtjs/axios",
"version": "4.5.2",
"version": "5.0.0-alpha.0",
"description": "Secure and easy axios integration with Nuxt.js",
"license": "MIT",
"main": "lib/module.js",
Expand All @@ -15,13 +15,23 @@
"release": "standard-version && git push --follow-tags && npm publish",
"prepare": "npm run test"
},
"eslintIgnore": ["*.template.*"],
"files": ["lib", "src", "dist"],
"eslintIgnore": [
"*.template.*"
],
"files": [
"lib",
"src",
"dist"
],
"jest": {
"testEnvironment": "node",
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"collectCoverageFrom": ["lib", "test", "!test/fixture"]
"collectCoverageFrom": [
"lib",
"test",
"!test/fixture"
]
},
"dependencies": {
"axios": "^0.17.1",
Expand Down

0 comments on commit be4aa6f

Please sign in to comment.