jormungandr-bite/webpack/module/rules/i18n.ts

23 lines
373 B
TypeScript
Raw Normal View History

2017-05-16 09:00:56 -06:00
/**
* Replace i18n texts
*/
2017-12-16 22:35:30 -07:00
import Replacer from '../../../src/common/build/i18n';
2017-05-16 09:00:56 -06:00
2017-12-16 22:35:30 -07:00
export default lang => {
const replacer = new Replacer(lang);
2017-10-25 05:29:14 -06:00
return {
enforce: 'pre',
2018-02-10 01:01:32 -07:00
test: /\.(vue|js|ts)$/,
2017-10-25 05:29:14 -06:00
exclude: /node_modules/,
2018-02-15 03:59:07 -07:00
use: [{
loader: 'replace-string-loader',
options: {
search: replacer.pattern,
replace: replacer.replacement
}
}]
2017-10-25 05:29:14 -06:00
};
};