Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: nuxt-community/axios-module
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v5.13.4
Choose a base ref
...
head repository: nuxt-community/axios-module
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v5.13.5
Choose a head ref
  • 2 commits
  • 3 files changed
  • 1 contributor

Commits on May 26, 2021

  1. 1

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    tonistiigi Tõnis Tiigi
    Copy the full SHA
    ec2eb0a View commit details
  2. chore(release): 5.13.5

    pi0 committed May 26, 2021

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    tonistiigi Tõnis Tiigi
    Copy the full SHA
    a9e4867 View commit details
Showing with 9 additions and 2 deletions.
  1. +7 −0 CHANGELOG.md
  2. +1 −1 lib/module.js
  3. +1 −1 package.json
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -2,6 +2,13 @@

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.

### [5.13.5](https://github.com/nuxt-community/axios-module/compare/v5.13.4...v5.13.5) (2021-05-26)


### Bug Fixes

* only transpile defu for client bundle (resolves [#501](https://github.com/nuxt-community/axios-module/issues/501)) ([ec2eb0a](https://github.com/nuxt-community/axios-module/commit/ec2eb0ae8642aaa3f3e51505f4ec86b699d09d90))

### [5.13.4](https://github.com/nuxt-community/axios-module/compare/v5.13.3...v5.13.4) (2021-05-18)


2 changes: 1 addition & 1 deletion lib/module.js
Original file line number Diff line number Diff line change
@@ -39,7 +39,7 @@ function axiosModule (_moduleOptions) {

// Transpile defu (IE11)
if (nuxt.options.build.transpile /* nuxt 1 */) {
nuxt.options.build.transpile.push('defu')
nuxt.options.build.transpile.push(({ isClient }) => isClient && 'defu')
}

// Default prefix
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nuxtjs/axios",
"version": "5.13.4",
"version": "5.13.5",
"description": "Secure and easy Axios integration with Nuxt.js",
"repository": "nuxt-community/axios-module",
"license": "MIT",