i18next-fetch-backend
Advanced tools
Comparing version 5.0.1 to 5.0.2
@@ -6,3 +6,3 @@ const defaults = { | ||
allowMultiLoading: false, | ||
fetch: typeof fetch !== 'undefined' ? fetch : undefined, | ||
fetch: typeof fetch === 'undefined' ? undefined : fetch, | ||
parse: JSON.parse, | ||
@@ -9,0 +9,0 @@ stringify: JSON.stringify, |
{ | ||
"name": "i18next-fetch-backend", | ||
"version": "5.0.1", | ||
"version": "5.0.2", | ||
"description": "backend layer for i18next using browsers fetch", | ||
@@ -41,18 +41,18 @@ "engines": { | ||
"devDependencies": { | ||
"c8": "^7.11.3", | ||
"chai": "^4.3.6", | ||
"c8": "^7.12.0", | ||
"chai": "^4.3.7", | ||
"dirname-filename-esm": "^1.1.1", | ||
"eslint": "^8.17.0", | ||
"eslint": "^8.33.0", | ||
"eslint-config-airbnb-base": "^15.0.0", | ||
"eslint-plugin-eslint-comments": "^3.2.0", | ||
"eslint-plugin-import": "^2.26.0", | ||
"eslint-plugin-mocha": "^10.0.5", | ||
"eslint-plugin-n": "^15.2.2", | ||
"eslint-plugin-unicorn": "^42.0.0", | ||
"eslint-plugin-import": "^2.27.5", | ||
"eslint-plugin-mocha": "^10.1.0", | ||
"eslint-plugin-n": "^15.6.1", | ||
"eslint-plugin-unicorn": "^45.0.2", | ||
"finalhandler": "^1.2.0", | ||
"i18next": "^21.8.9", | ||
"i18next": "^22.4.9", | ||
"isomorphic-fetch": "^3.0.0", | ||
"mocha": "^10.0.0", | ||
"mocha": "^10.2.0", | ||
"serve-static": "^1.15.0" | ||
} | ||
} |
@@ -136,3 +136,3 @@ # Introduction | ||
[build-badge]: https://img.shields.io/github/workflow/status/dotcore64/i18next-fetch-backend/test/master?style=flat-square | ||
[build-badge]: https://img.shields.io/github/actions/workflow/status/dotcore64/i18next-fetch-backend/test.yml?event=push&style=flat-square | ||
[build]: https://github.com/dotcore64/i18next-fetch-backend/actions | ||
@@ -139,0 +139,0 @@ |
10513