Skip to content

Commit

Permalink
Dev-3801 Dependency Issue > Lock all codebase vue and vue compiler ve…
Browse files Browse the repository at this point in the history
…rsion (#35)
  • Loading branch information
jonelrempis authored May 19, 2021
1 parent ed4bc00 commit da7f573
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,16 @@
"axios": "^0.19.0",
"i18next": "^10.2.2",
"i18next-browser-languagedetector": "^2.1.0",
"i18next-xhr-backend": "^1.5.1",
"i18next-http-backend": "^1.2.4",
"jsonwebtoken": "^8.2.1",
"lodash-es": "^4.17.10",
"moment": "^2.20.1",
"qs": "^6.5.2",
"quasar": "^1.14.1",
"vue": "^2.5.16",
"vue": "2.6.11",
"vue-gtm": "3.1.0-vue2",
"vue-router": "^3.0.1",
"vue-template-compiler": "^2.6.7",
"vue-template-compiler": "2.6.11",
"vuelidate": "^0.6.2",
"vuex": "^3.0.1"
},
Expand All @@ -41,6 +41,7 @@
"devDependencies": {
"@quasar/cli": "^1.1.2",
"babel-eslint": "^8.2.1",
"cross-env": "^7.0.3",
"esdoc": "^1.1.0",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^4.18.2",
Expand Down
6 changes: 3 additions & 3 deletions src/boot/vue-i18next.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import i18next from 'i18next';
import i18nextXHRBackend from 'i18next-xhr-backend';
import i18nextHttpBackend from 'i18next-http-backend';
import i18nextLangDetector from 'i18next-browser-languagedetector';
import VueI18next from '@panter/vue-i18next';
import i18nextConfig from 'src/config/i18next';
Expand Down Expand Up @@ -33,7 +33,7 @@ export default ({ app, Vue }) => {
i18next.use(i18nextLangDetector);

if (i18nextConfig.backend) {
i18next.use(i18nextXHRBackend);
i18next.use(i18nextHttpBackend);
}

i18next.init(i18nextConfig);
Expand Down Expand Up @@ -95,4 +95,4 @@ export default ({ app, Vue }) => {
}
}
});
};
};

0 comments on commit da7f573

Please sign in to comment.