nuxt-i18n
Advanced tools
Comparing version 5.12.2 to 5.12.3
@@ -5,2 +5,12 @@ # Change Log | ||
## [5.12.3](https://github.com/nuxt-community/nuxt-i18n/compare/v5.12.2...v5.12.3) (2019-05-13) | ||
### Bug Fixes | ||
* remove explicit dependency on vue-template-compiler (fixes [#297](https://github.com/nuxt-community/nuxt-i18n/issues/297)) ([576382e](https://github.com/nuxt-community/nuxt-i18n/commit/576382e)) | ||
* remove explicit dependency on vue-template-compiler (fixes [#297](https://github.com/nuxt-community/nuxt-i18n/issues/297)) ([#305](https://github.com/nuxt-community/nuxt-i18n/issues/305)) ([2eff158](https://github.com/nuxt-community/nuxt-i18n/commit/2eff158)) | ||
## [5.12.2](https://github.com/nuxt-community/nuxt-i18n/compare/v5.12.1...v5.12.2) (2019-05-09) | ||
@@ -7,0 +17,0 @@ |
{ | ||
"name": "nuxt-i18n", | ||
"version": "5.12.2", | ||
"version": "5.12.3", | ||
"description": "i18n for Nuxt", | ||
@@ -51,4 +51,3 @@ "license": "MIT", | ||
"vue-i18n": "^8.11.2", | ||
"vue-i18n-extensions": "^0.2.1", | ||
"vue-template-compiler": "^2.6.10" | ||
"vue-i18n-extensions": "^0.2.1" | ||
}, | ||
@@ -67,3 +66,3 @@ "devDependencies": { | ||
"jest": "24.8.0", | ||
"jsdom": "15.0.0", | ||
"jsdom": "15.1.0", | ||
"nuxt": "2.6.3", | ||
@@ -70,0 +69,0 @@ "standard-version": "6.0.1", |
@@ -6,2 +6,4 @@ const { readFileSync } = require('fs') | ||
const walker = require('acorn-walk') | ||
// Must not be an explicit dependency to avoid version mismatch issue. | ||
// See https://github.com/nuxt-community/nuxt-i18n/issues/297 | ||
const compiler = require('vue-template-compiler') | ||
@@ -8,0 +10,0 @@ |
@@ -62,2 +62,5 @@ const { resolve, join } = require('path') | ||
this.extendRoutes((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 } = require('./helpers/routes') | ||
@@ -64,0 +67,0 @@ |
58256
7
983
- Removedvue-template-compiler@^2.6.10
- Removedde-indent@1.0.2(transitive)
- Removedhe@1.2.0(transitive)
- Removedvue-template-compiler@2.7.16(transitive)