Releases: i18next/i18next-scanner
Releases · i18next/i18next-scanner
v3.3.0
What's Changed
- feat: add
allowDynamicKeys
option that allows inferring dynamic keys within the custom handler by @delphiactual in #233
New Contributors
- @delphiactual made their first contribution in #233
Full Changelog: v3.2.0...v3.3.0
v3.2.0
What's Changed
- chore: use let instead of const to fix type error by @sitek94 in #225
- feat: add metadata attribute for passing context information about the translation key/string by @mmohajer in #230
New Contributors
Full Changelog: v3.1.0...v3.2.0
v3.1.0
v3.0.1
v3.0.0
v2.11.0
v2.10.3
v2.10.2
v2.10.1
v2.10.0
- Allows passing config options for specifying input/output folder rather than using command-line parameters (775067f)
module.exports = { input: [ 'app/**/*.{js,jsx}', // Use ! to filter out files or directories '!app/**/*.spec.{js,jsx}', '!app/i18n/**', '!**/node_modules/**', ], output: './', options: { }, transform: { }, };
- Allows passing acorn options provided by acorn parser
trans: { acorn: { emcaVersion: 10, // defaults to 10 sourceType: 'module', // defaults to 'module' // Check out https://github.com/acornjs/acorn/tree/master/acorn#interface for additional options } }
- deps:
acorn@^6.1.1
- deps:
acorn-stage3@^2.0.0
- deps:
i18next@*