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.3
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.4
Choose a head ref
  • 2 commits
  • 3 files changed
  • 1 contributor

Commits on May 18, 2021

  1. Verified

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

    pi0 committed May 18, 2021

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    tonistiigi Tõnis Tiigi
    Copy the full SHA
    3759157 View commit details
Showing with 11 additions and 2 deletions.
  1. +7 −0 CHANGELOG.md
  2. +3 −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.4](https://github.com/nuxt-community/axios-module/compare/v5.13.3...v5.13.4) (2021-05-18)


### Bug Fixes

* `build.transpile` guard for nuxt@1.x (fixes [#498](https://github.com/nuxt-community/axios-module/issues/498)) ([66d56ab](https://github.com/nuxt-community/axios-module/commit/66d56ab8adbb50b470bc298d27bcd1a6820ab958))

### [5.13.3](https://github.com/nuxt-community/axios-module/compare/v5.13.2...v5.13.3) (2021-05-17)


4 changes: 3 additions & 1 deletion lib/module.js
Original file line number Diff line number Diff line change
@@ -38,7 +38,9 @@ function axiosModule (_moduleOptions) {
}

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

// Default prefix
const prefix = process.env.API_PREFIX || moduleOptions.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.3",
"version": "5.13.4",
"description": "Secure and easy Axios integration with Nuxt.js",
"repository": "nuxt-community/axios-module",
"license": "MIT",