nuxt-i18n
Advanced tools
Comparing version 6.14.1 to 6.14.2
@@ -0,1 +1,8 @@ | ||
### [6.14.2](https://github.com/nuxt-community/i18n-module/compare/v6.14.1...v6.14.2) (2020-09-08) | ||
### Bug Fixes | ||
* fails at extending routes when followed by another module ([#884](https://github.com/nuxt-community/i18n-module/issues/884)) ([c0d136b](https://github.com/nuxt-community/i18n-module/commit/c0d136b83a4998926500ed90e34c4223f98034b9)), closes [#157](https://github.com/nuxt-community/i18n-module/issues/157) | ||
### [6.14.1](https://github.com/nuxt-community/i18n-module/compare/v6.14.0...v6.14.1) (2020-09-08) | ||
@@ -2,0 +9,0 @@ |
{ | ||
"name": "nuxt-i18n", | ||
"version": "6.14.1", | ||
"version": "6.14.2", | ||
"description": "i18n for Nuxt", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
@@ -17,7 +17,7 @@ import { resolve, join } from 'path' | ||
return async routes => { | ||
return routes => { | ||
// This import (or more specifically 'vue-template-compiler' in helpers/components.js) needs to | ||
// be required only at build time to avoid problems when 'vue-template-compiler' dependency is | ||
// not available (at runtime, when using nuxt-start). | ||
const { makeRoutes } = await import('../helpers/routes') | ||
const { makeRoutes } = require('../helpers/routes') | ||
@@ -24,0 +24,0 @@ const localizedRoutes = makeRoutes(routes, { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
118298