Skip to content
This repository was archived by the owner on Dec 3, 2025. It is now read-only.

Commit a347cbc

Browse files
Minor fixes.
1 parent 3aeaf1a commit a347cbc

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

.eslintrc.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
{
2-
"extends": ["@reactway"]
2+
"extends": ["@reactway"],
3+
"ignorePatterns": ["src/shared/locale/translations/translations.d.ts"]
34
}

package-lock.json

Lines changed: 1 addition & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@
4545
},
4646
"dependencies": {
4747
"i18next": "^19.3.2",
48-
"lodash.set": "^4.3.2"
48+
"lodash.set": "^4.3.2",
49+
"tslib": "^1.11.0"
4950
}
5051
}

src/backend-plugin.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export class WebpackBackend implements Module {
4040
const translations = {};
4141

4242
await Promise.all(
43-
namespaces.map(namespace => {
43+
namespaces.map(async namespace => {
4444
return Promise.all(
4545
languages.map(async lang => {
4646
const builtKey = `./${lang}/${namespace}.json`;

tsconfig.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
"importHelpers": true,
1414
"esModuleInterop": true,
1515
"moduleResolution": "node",
16-
"sourceMap": true,
1716
"types": ["webpack-env"]
1817
},
1918
"exclude": ["dist"]

0 commit comments

Comments
 (0)