chore(release): 0.1.3

This commit is contained in:
EvolutionX
2022-06-10 22:40:32 +05:30
parent 310c82f24e
commit 67a0efd1c2
4 changed files with 7 additions and 5 deletions

View File

@@ -10,7 +10,9 @@ const extraFolder = fileURLToPath(extraURL);
export async function create(name, lang, location, no_ext) {
const file = `${name}.${lang}.sern`;
const target = no_ext ? `${location}/${name}` : `${location}/${name}.${lang}`;
const target = no_ext
? `${location}/${name}`
: `${location}/${name}.${lang}`;
return createFile(file, target);
}