mirror of https://github.com/sundowndev/http.git
chore(release): 5.0.0-rc.2
parent
ea4882a52f
commit
770bbe2f24
11
CHANGELOG.md
11
CHANGELOG.md
|
@ -2,6 +2,17 @@
|
|||
|
||||
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-rc.2"></a>
|
||||
# [5.0.0-rc.2](https://github.com/nuxt-community/axios-module/compare/v5.0.0-rc.1...v5.0.0-rc.2) (2018-01-29)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **package:** require [@nuxtjs](https://github.com/nuxtjs)/proxy as a peerDependency ([fd1ef47](https://github.com/nuxt-community/axios-module/commit/fd1ef47))
|
||||
* support dynamic API_URL for SSR ([ea4882a](https://github.com/nuxt-community/axios-module/commit/ea4882a))
|
||||
|
||||
|
||||
|
||||
<a name="5.0.0-rc.1"></a>
|
||||
# [5.0.0-rc.1](https://github.com/nuxt-community/axios-module/compare/v5.0.0-rc.0...v5.0.0-rc.1) (2018-01-28)
|
||||
|
||||
|
|
18
package.json
18
package.json
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@nuxtjs/axios",
|
||||
"version": "5.0.0-rc.1",
|
||||
"version": "5.0.0-rc.2",
|
||||
"description": "Secure and easy axios integration with Nuxt.js",
|
||||
"license": "MIT",
|
||||
"main": "lib/module.js",
|
||||
|
@ -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"
|
||||
]
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@nuxtjs/proxy": "^1.1.4"
|
||||
|
|
Loading…
Reference in New Issue