babel-plugin-i18next-extract
Advanced tools
Comparing version 0.9.0-rc to 0.9.0-rc.1
{ | ||
"name": "babel-plugin-i18next-extract", | ||
"version": "0.9.0-rc", | ||
"version": "0.9.0-rc.1", | ||
"description": "Statically extract translation keys from i18next application.", | ||
@@ -36,3 +36,3 @@ "engines": { | ||
"@babel/core": "^7.18.9", | ||
"@babel/types": "7.18.9", | ||
"@babel/types": "7.18.10", | ||
"deepmerge": "^4.2.2", | ||
@@ -39,0 +39,0 @@ "i18next": "^21.8.14", |
import * as BabelCore from '@babel/core'; | ||
import { CommentHint } from './comments'; | ||
import { Config } from './config'; | ||
import { ExporterCache } from './exporters'; | ||
import { ExtractedKey } from './keys'; | ||
export interface VisitorState { | ||
file: any; | ||
export interface VisitorState extends BabelCore.PluginPass { | ||
opts: Partial<Config>; | ||
@@ -15,5 +13,4 @@ I18NextExtract: I18NextExtractState; | ||
config: Config; | ||
exporterCache: ExporterCache; | ||
} | ||
export default function (api: BabelCore.ConfigAPI): BabelCore.PluginObj<VisitorState>; | ||
export {}; |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
161563
3868
+ Added@babel/types@7.18.10(transitive)
- Removed@babel/types@7.18.9(transitive)
Updated@babel/types@7.18.10