1
0
Fork 0
forked from forgejo/forgejo

Update some JS dependencies (#13222)

* Update some JS dependencies

- Update selective dependencies that are compatible with webpack 4. We
can not upgrade to webpack 5 yet because `license-webpack-plugin` is
incompatible.
- Enable a few new eslint rules and fix new issues

* fix comment

Co-authored-by: techknowlogick <techknowlogick@gitea.io>
Co-authored-by: zeripath <art27@cantab.net>
This commit is contained in:
silverwind 2020-10-21 13:02:24 +02:00 committed by GitHub
parent 965861043a
commit 58e1e5ba13
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 878 additions and 697 deletions

View file

@ -15,7 +15,7 @@ export const emojiKeys = Object.keys(tempMap).sort((a, b) => {
return a.localeCompare(b);
});
export const emojiMap = {};
const emojiMap = {};
for (const key of emojiKeys) {
emojiMap[key] = tempMap[key];
}