Skip to content
Snippets Groups Projects
Commit 986780a3 authored by syuilo's avatar syuilo
Browse files

wip

parent 1464df57
No related branches found
No related tags found
No related merge requests found
......@@ -14,7 +14,7 @@ fontawesome.library.add(brands);
export const pattern = /%fa:(.+?)%/g;
export const replacement = (_, key) => {
export const replacement = (match, key) => {
const args = key.split(' ');
let prefix = 'fas';
const classes = [];
......
......@@ -143,7 +143,8 @@ module.exports = entries.map(x => {
loader: 'replace',
query: {
search: i18nReplacer.pattern.toString(),
replace: 'i18nReplacement'
replace: 'i18nReplacement',
i18n: true
}
}, {
loader: 'replace',
......@@ -214,7 +215,8 @@ module.exports = entries.map(x => {
loader: 'replace',
query: {
search: i18nReplacer.pattern.toString(),
replace: 'i18nReplacement'
replace: 'i18nReplacement',
i18n: true
}
}, {
loader: 'replace',
......
......@@ -10,9 +10,9 @@ module.exports = function(src) {
const search = options.search;
const g = search[search.length - 1] == 'g';
const file = this.resourcePath.replace(/\\/g, '/');
const replace = global[options.replace].bind(null, {
const replace = options.i18n ? global[options.replace].bind(null, {
src: file
});
}) : global[options.replace];
if (typeof search != 'string' || search.length == 0) console.error('invalid search');
if (typeof replace != 'function') console.error('invalid replacer:', replace, this.request);
src = src.replace(new RegExp(trim(search, g), g ? 'g' : ''), replace);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment