Rename helpers folder, move some vue filters

This commit is contained in:
Pavel Djundik 2019-11-05 12:36:44 +02:00
commit fc1c9568e2
44 changed files with 66 additions and 85 deletions

View file

@ -24,12 +24,12 @@ const fs = require("fs");
const fullNameEmojiMapOutput = JSON.stringify(fullNameEmojiMap, null, 2) + "\n";
fs.writeFileSync(
path.resolve(path.join(__dirname, "..", "client", "js", "libs", "simplemap.json")),
path.resolve(path.join(__dirname, "..", "client", "js", "helpers", "simplemap.json")),
emojiMapOutput
);
fs.writeFileSync(
path.resolve(path.join(__dirname, "..", "client", "js", "libs", "fullnamemap.json")),
path.resolve(path.join(__dirname, "..", "client", "js", "helpers", "fullnamemap.json")),
fullNameEmojiMapOutput
);
})();