update import syntax for i18next dependents (#39980)

i18next@19 uses default exports. This PR updates the tests of dependents
to use them instead of `import * as i18next from 'i18next'`.
This commit is contained in:
Nathan Shively-Sanders 2019-10-29 14:58:55 -07:00 committed by GitHub
parent e527e0317f
commit 435fef1035
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
import * as i18next from "i18next";
import i18next from "i18next";
import * as Backend from "i18next-node-fs-backend";
var options = {

View File

@ -1,4 +1,4 @@
import * as i18next from "i18next";
import i18next from "i18next";
import * as sprintfA from "i18next-sprintf-postprocessor";
import sprintfB from "i18next-sprintf-postprocessor/dist/commonjs";