We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 120996a commit d939c76Copy full SHA for d939c76
1 file changed
scripts/lang.js
@@ -45,7 +45,8 @@ async function bundle(files = []) {
45
Object.entries(await readJSON(file)).forEach(
46
([key, value]) => {
47
if (key.startsWith('//')) return;
48
- assign(ret, lang, `underscript.${name}.${key}`, value);
+ const fullKey = name === 'vanilla' ? key : `underscript.${name}.${key}`;
49
+ assign(ret, lang, fullKey, value);
50
},
51
);
52
}));
0 commit comments