Skip to content

Commit

Permalink
fix: (xgplayer) 修复打包后 es / lang 文件夹多语言文件缺失的问题
Browse files Browse the repository at this point in the history
  • Loading branch information
vaebe authored and gemxx committed Dec 23, 2024
1 parent de96289 commit 30cb962
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions packages/xgplayer/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,24 @@ import { STATES } from './state'

export * from './presets'

/**
* Languages Exports
*/
export { default as langZhHk } from './lang/zh-hk'
export { default as langJp } from './lang/jp'
export { default as langZhCn } from './lang/zh-cn'
export { default as langBr } from './lang/br'
export { default as langDe } from './lang/de'
export { default as langEn } from './lang/en'
export { default as langEs } from './lang/es'
export { default as langFr } from './lang/fr'
export { default as langId } from './lang/id'
export { default as langIt } from './lang/it'
export { default as langKr } from './lang/kr'
export { default as langMsMy } from './lang/ms-my'
export { default as langRu } from './lang/ru'
export { default as langTh } from './lang/th'
export { default as langVn } from './lang/vn'

/**
* Plugins Exports
Expand Down

0 comments on commit 30cb962

Please sign in to comment.