misskey/webpack/module/rules/i18n.ts

22 lines
445 B
TypeScript
Raw Normal View History

2017-05-16 15:00:56 +00:00
/**
* Replace i18n texts
*/
const StringReplacePlugin = require('string-replace-webpack-plugin');
2017-12-17 05:35:30 +00:00
import Replacer from '../../../src/common/build/i18n';
2017-05-16 15:00:56 +00:00
2017-12-17 05:35:30 +00:00
export default lang => {
const replacer = new Replacer(lang);
2017-10-25 11:29:14 +00:00
return {
enforce: 'pre',
2017-11-14 11:23:12 +00:00
test: /\.(tag|js|ts)$/,
2017-10-25 11:29:14 +00:00
exclude: /node_modules/,
loader: StringReplacePlugin.replace({
replacements: [{
2017-12-17 05:35:30 +00:00
pattern: replacer.pattern, replacement: replacer.replacement
2017-10-25 11:29:14 +00:00
}]
})
};
};