加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Gruntfile.js 1004 Bytes
一键复制 编辑 原始数据 按行查看 历史
liyoumin 提交于 2022-11-28 15:11 . feat: add the maintenance
module.exports = function (grunt) {
grunt.initConfig({
i18next: {
dev: {
src: ['src/**/*.{tsx,ts}'],
dest: 'src',
options: {
lngs: ['en-US', 'zh-CN'],
removeUnusedKeys: true,
// sort: true,
keySeparator: false,
nsSeparator: false,
interpolation: {
prefix: '{{',
suffix: '}}',
},
resource: {
loadPath: 'src/locales/{{lng}}.json',
savePath: 'locales/{{lng}}.json',
},
func: {
list: ['t', 't.html'],
extensions: ['.ts', '.tsx'],
},
defaultValue: (lng, ns, key) => {
if (lng === 'zh-CN') {
return '';
}
return key;
},
},
},
},
});
// Load the plugin that provides the "i18next" task.
grunt.loadNpmTasks('i18next-scanner');
// Default task(s).
grunt.registerTask('default', ['i18next']);
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化